diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-04-25 16:58:34 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-04-26 10:50:05 +0200 |
commit | dadf82d61f3cced61e9ccc35a5219e0b32cfee9e (patch) | |
tree | 5cedbbc76fcb69f1dda1be2b131fd5be0c64f08c /testsuite/tests/rebindable | |
parent | e8c04d4ca5c78c6b68dab840ea53af42eee99364 (diff) | |
download | haskell-dadf82d61f3cced61e9ccc35a5219e0b32cfee9e.tar.gz |
Testsuite: fixup lots of tests
These aren't run very often, because they require external libraries.
https://ghc.haskell.org/trac/ghc/wiki/Building/RunningTests/Running#AdditionalPackages
maessen-hashtab still doesn't compile, QuickCheck api changed.
Update submodule hpc.
Diffstat (limited to 'testsuite/tests/rebindable')
-rw-r--r-- | testsuite/tests/rebindable/DoParamM.stderr | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/testsuite/tests/rebindable/DoParamM.stderr b/testsuite/tests/rebindable/DoParamM.stderr index 09d2370737..6328d086b6 100644 --- a/testsuite/tests/rebindable/DoParamM.stderr +++ b/testsuite/tests/rebindable/DoParamM.stderr @@ -1,34 +1,34 @@ -DoParamM.hs:146:25: - Couldn't match expected type `Int' with actual type `Char' - In the second argument of `(==)', namely v' - In the first argument of `return', namely `(v == v')' - In a stmt of a 'do' block: return (v == v') +DoParamM.hs:146:25: error: + • Couldn't match expected type ‘Int’ with actual type ‘Char’ + • In the second argument of ‘(==)’, namely ‘v'’ + In the first argument of ‘return’, namely ‘(v == v')’ + In a stmt of a 'do' block: return (v == v') -DoParamM.hs:286:28: - Couldn't match type `Unlocked' with `Locked' - Expected type: LIO Locked Locked () - Actual type: LIO Unlocked Locked () - In a stmt of a 'do' block: tlock2_do - In the expression: - do { tlock2_do; - tlock2_do } - In an equation for `tlock4_do': - tlock4_do - = do { tlock2_do; - tlock2_do } +DoParamM.hs:286:28: error: + • Couldn't match type ‘Unlocked’ with ‘Locked’ + Expected type: LIO Locked Locked () + Actual type: LIO Unlocked Locked () + • In a stmt of a 'do' block: tlock2_do + In the expression: + do { tlock2_do; + tlock2_do } + In an equation for ‘tlock4_do’: + tlock4_do + = do { tlock2_do; + tlock2_do } -DoParamM.hs:302:37: - Couldn't match type `Locked' with `Unlocked' - Expected type: LIO Unlocked Unlocked () - Actual type: LIO Locked Unlocked () - In a stmt of a 'do' block: unlock - In the expression: - do { tlock2_do; - unlock; - unlock } - In an equation for `tlock4'_do': - tlock4'_do - = do { tlock2_do; - unlock; - unlock } +DoParamM.hs:302:37: error: + • Couldn't match type ‘Locked’ with ‘Unlocked’ + Expected type: LIO Unlocked Unlocked () + Actual type: LIO Locked Unlocked () + • In a stmt of a 'do' block: unlock + In the expression: + do { tlock2_do; + unlock; + unlock } + In an equation for ‘tlock4'_do’: + tlock4'_do + = do { tlock2_do; + unlock; + unlock } |