Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
5fdb2b14
Commit
5fdb2b14
authored
Feb 28, 2017
by
Ben Gamari
🐢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try submodule bumps again
Bumps containers, time, and unix submodules. This reverts commit
c347a121
.
parent
122c6776
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
20 additions
and
17 deletions
+20
-17
compiler/ghc.cabal.in
compiler/ghc.cabal.in
+1
-1
ghc/ghc-bin.cabal.in
ghc/ghc-bin.cabal.in
+1
-1
libraries/containers
libraries/containers
+1
-1
libraries/time
libraries/time
+1
-1
libraries/unix
libraries/unix
+1
-1
testsuite/tests/backpack/should_run/bkprun05.stderr
testsuite/tests/backpack/should_run/bkprun05.stderr
+1
-1
testsuite/tests/cabal/cabal08/all.T
testsuite/tests/cabal/cabal08/all.T
+2
-1
testsuite/tests/driver/T10970.stdout
testsuite/tests/driver/T10970.stdout
+1
-1
testsuite/tests/ghci.debugger/scripts/print026.stdout
testsuite/tests/ghci.debugger/scripts/print026.stdout
+7
-4
testsuite/tests/package/package01e.stderr
testsuite/tests/package/package01e.stderr
+2
-2
testsuite/tests/partial-sigs/should_fail/T10999.stderr
testsuite/tests/partial-sigs/should_fail/T10999.stderr
+1
-2
testsuite/tests/th/T10796b.stderr
testsuite/tests/th/T10796b.stderr
+1
-1
No files found.
compiler/ghc.cabal.in
View file @
5fdb2b14
...
...
@@ -55,7 +55,7 @@ Library
process >= 1 && < 1.5,
bytestring >= 0.9 && < 0.11,
binary == 0.8.*,
time >= 1.4 && < 1.
8
,
time >= 1.4 && < 1.
9
,
containers >= 0.5 && < 0.6,
array >= 0.1 && < 0.6,
filepath >= 1 && < 1.5,
...
...
ghc/ghc-bin.cabal.in
View file @
5fdb2b14
...
...
@@ -52,7 +52,7 @@ Executable ghc
deepseq == 1.4.*,
ghci == @ProjectVersionMunged@,
haskeline == 0.7.*,
time == 1.
7
.*,
time == 1.
8
.*,
transformers == 0.5.*
CPP-Options: -DGHCI
GHC-Options: -fno-warn-name-shadowing
...
...
containers
@
9e5d789c
Compare
aa982fb8
...
9e5d789c
Subproject commit
aa982fb83f2561d3b27b89b46d36ffca21e072c
c
Subproject commit
9e5d789c77b7252fb3fbf7a26f649b96ba20649
c
time
@
4eb06c0e
Compare
b6098be8
...
4eb06c0e
Subproject commit
b6098be8a4facfa854c633f2a3a82ab8e72962ef
Subproject commit
4eb06c0e5381a5b5ad2186ac6ecff434cd711376
unix
@
821cb07e
Compare
d0b0e8cf
...
821cb07e
Subproject commit
d0b0e8cf5a7fa5b9dc500d2f623258200818cb16
Subproject commit
821cb07ecf235625b4bb06626d30e4b15f28df30
testsuite/tests/backpack/should_run/bkprun05.stderr
View file @
5fdb2b14
bkprun05: Prelude.undefined
CallStack (from HasCallStack):
error, called at libraries/base/GHC/Err.hs:79:14 in base:GHC.Err
undefined, called at bkprun05.bkp:138:30 in app+app-
9GMmly0OuEYHDXryaGD7sX
:App
undefined, called at bkprun05.bkp:138:30 in app+app-
89WS9ScvjQd9lPG2oW0wWM
:App
testsuite/tests/cabal/cabal08/all.T
View file @
5fdb2b14
...
...
@@ -4,6 +4,7 @@ else:
cleanup
=
'
CLEANUP=0
'
test
('
cabal08
',
extra_files
(['
Main.hs
',
'
Setup.hs
',
'
p1/
',
'
p2/
']),
[
extra_files
(['
Main.hs
',
'
Setup.hs
',
'
p1/
',
'
p2/
']),
expect_broken
(
13313
)],
run_command
,
['
$MAKE -s --no-print-directory cabal08
'
+
cleanup
])
testsuite/tests/driver/T10970.stdout
View file @
5fdb2b14
0.5.
7.1
0.5.
10.2
OK
testsuite/tests/ghci.debugger/scripts/print026.stdout
View file @
5fdb2b14
fromList "abc"
l = Data.Sequence.Seq (Data.Sequence.Deep
3 (Data.Sequence.One (Data.Sequence.Elem 'a')) Data.Sequence.Empty
(Data.Sequence.Two
(Data.Sequence.Elem 'b') (Data.Sequence.Elem 'c')))
l = Data.Sequence.Internal.Seq (Data.Sequence.Internal.Deep
3
(Data.Sequence.Internal.Two
(Data.Sequence.Internal.Elem 'a')
(Data.Sequence.Internal.Elem 'b'))
Data.Sequence.Internal.EmptyT
(Data.Sequence.Internal.One (Data.Sequence.Internal.Elem 'c')))
l = fromList "abc"
testsuite/tests/package/package01e.stderr
View file @
5fdb2b14
package01e.hs:2:1: error:
Could not find module ‘Data.Map’
It is a member of the hidden package ‘containers-0.5.
7.1
’.
It is a member of the hidden package ‘containers-0.5.
10.2
’.
Use -v to see a list of the files searched for.
package01e.hs:3:1: error:
Could not find module ‘Data.IntMap’
It is a member of the hidden package ‘containers-0.5.
7.1
’.
It is a member of the hidden package ‘containers-0.5.
10.2
’.
Use -v to see a list of the files searched for.
testsuite/tests/partial-sigs/should_fail/T10999.stderr
View file @
5fdb2b14
...
...
@@ -21,8 +21,7 @@ T10999.hs:8:28: error:
Relevant bindings include g :: [b0] (bound at T10999.hs:8:1)
Probable fix: use a type annotation to specify what ‘b0’ should be.
These potential instances exist:
instance Ord a => Ord (Set.Set a)
-- Defined in ‘containers-0.5.7.1:Data.Set.Base’
instance Ord a => Ord (Set.Set a) -- Defined in ‘Data.Set.Internal’
instance Ord Ordering -- Defined in ‘GHC.Classes’
instance Ord Integer
-- Defined in ‘integer-gmp-1.0.0.1:GHC.Integer.Type’
...
...
testsuite/tests/th/T10796b.stderr
View file @
5fdb2b14
T10796b.hs:8:17: error:
• Can't construct a pattern from name Data.Set.
Base
.fromList
• Can't construct a pattern from name Data.Set.
Internal
.fromList
• In the untyped splice:
$(dataToPatQ (const Nothing) (fromList "test"))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment