diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-03 14:48:23 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-09 13:24:04 +0200 |
commit | 43ebe24aed3bfb4decd958ca91313ab2773abd51 (patch) | |
tree | ddeaf4d02da4b1f2f70f8576aa298595a9219316 /testsuite/tests | |
parent | bb9967121f2383b857680b47b6bc20607f8fd1ff (diff) | |
download | haskell-43ebe24aed3bfb4decd958ca91313ab2773abd51.tar.gz |
Testsuite: delete expect_fail setups for hugs
This makes it easier to grep for expect_fail in the tests directory.
Differential Revision: https://phabricator.haskell.org/D964
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/module/all.T | 2 | ||||
-rw-r--r-- | testsuite/tests/parser/should_compile/all.T | 4 | ||||
-rw-r--r-- | testsuite/tests/parser/should_fail/all.T | 2 | ||||
-rw-r--r-- | testsuite/tests/programs/life_space_leak/test.T | 3 | ||||
-rw-r--r-- | testsuite/tests/typecheck/should_compile/all.T | 4 | ||||
-rw-r--r-- | testsuite/tests/typecheck/should_fail/all.T | 2 |
6 files changed, 8 insertions, 9 deletions
diff --git a/testsuite/tests/module/all.T b/testsuite/tests/module/all.T index d0b37aaa33..cd1bdac293 100644 --- a/testsuite/tests/module/all.T +++ b/testsuite/tests/module/all.T @@ -260,7 +260,7 @@ test('mod150', normal, compile_fail, ['']) test('mod151', normal, compile_fail, ['']) test('mod152', normal, compile_fail, ['']) test('mod153', normal, compile_fail, ['']) -test('mod154', when(compiler_type('hugs'), expect_fail), compile, ['']) +test('mod154', normal, compile, ['']) test('mod155', normal, compile_fail, ['']) test('mod156', normal, compile, ['']) test('mod157', diff --git a/testsuite/tests/parser/should_compile/all.T b/testsuite/tests/parser/should_compile/all.T index 9e7612c967..eec0a12b69 100644 --- a/testsuite/tests/parser/should_compile/all.T +++ b/testsuite/tests/parser/should_compile/all.T @@ -45,8 +45,8 @@ test('read029', normal, compile, ['']) test('read030', normal, compile, ['']) test('read031', normal, compile, ['']) test('read032', normal, compile, ['']) -test('read033', when(compiler_type('hugs'), expect_fail), compile, ['']) -test('read034', when(compiler_type('hugs'), expect_fail), compile, ['']) +test('read033', normal, compile, ['']) +test('read034', normal, compile, ['']) test('read036', normal, compile, ['']) test('read037', normal, compile, ['']) test('read038', normal, compile, ['']) diff --git a/testsuite/tests/parser/should_fail/all.T b/testsuite/tests/parser/should_fail/all.T index 0352235180..cc59a14d28 100644 --- a/testsuite/tests/parser/should_fail/all.T +++ b/testsuite/tests/parser/should_fail/all.T @@ -23,7 +23,7 @@ test('readFail020', normal, compile_fail, ['']) # empty file (length zero) is not a legal Haskell module. It fails to compile # because it doesn't contain a definition of Main.main. GHC 5.02 crashed # on this example. -test('readFail021', when(compiler_type('hugs'), expect_fail), compile_fail, ['']) +test('readFail021', normal, compile_fail, ['']) test('readFail022', normal, compile_fail, ['']) test('readFail023', normal, compile_fail, ['']) diff --git a/testsuite/tests/programs/life_space_leak/test.T b/testsuite/tests/programs/life_space_leak/test.T index 11f73e0eb0..44831376e5 100644 --- a/testsuite/tests/programs/life_space_leak/test.T +++ b/testsuite/tests/programs/life_space_leak/test.T @@ -1,8 +1,7 @@ # exhausts Hugs's heap (CAF leak) test('life_space_leak', [when(fast(), skip), - extra_clean(['Main.hi', 'Main.o']), - when(compiler_type('hugs'), expect_fail)], + extra_clean(['Main.hi', 'Main.o'])], multimod_compile_and_run, ['Main', '']) diff --git a/testsuite/tests/typecheck/should_compile/all.T b/testsuite/tests/typecheck/should_compile/all.T index dbd6328cae..bd87afb5ce 100644 --- a/testsuite/tests/typecheck/should_compile/all.T +++ b/testsuite/tests/typecheck/should_compile/all.T @@ -84,7 +84,7 @@ test('tc079', normal, compile, ['']) test('tc080', normal, compile, ['']) test('tc081', normal, compile, ['']) test('tc082', normal, compile, ['']) -test('tc084', when(compiler_type('hugs'), expect_fail), compile, ['']) +test('tc084', normal, compile, ['']) test('tc085', only_compiler_types(['ghc']), compile, ['']) test('tc086', normal, compile, ['']) test('tc087', normal, compile, ['']) @@ -96,7 +96,7 @@ test('tc092', normal, compile, ['']) test('tc093', normal, compile, ['']) test('tc094', normal, compile, ['']) test('tc095', normal, compile, ['']) -test('tc096', when(compiler_type('hugs'), expect_fail), compile, ['']) +test('tc096', normal, compile, ['']) test('tc097', normal, compile, ['']) test('tc098', normal, compile, ['']) test('tc099', normal, compile, ['']) diff --git a/testsuite/tests/typecheck/should_fail/all.T b/testsuite/tests/typecheck/should_fail/all.T index b9c7d5ac1f..4dfc220c58 100644 --- a/testsuite/tests/typecheck/should_fail/all.T +++ b/testsuite/tests/typecheck/should_fail/all.T @@ -24,7 +24,7 @@ test('tcfail023', normal, compile_fail, ['']) test('tcfail027', normal, compile_fail, ['']) test('tcfail028', normal, compile_fail, ['']) test('tcfail029', normal, compile_fail, ['']) -test('tcfail030', when(compiler_type('hugs'), expect_fail), compile_fail, ['']) +test('tcfail030', normal, compile_fail, ['']) test('tcfail031', normal, compile_fail, ['']) test('tcfail032', normal, compile_fail, ['']) test('tcfail033', normal, compile_fail, ['']) |