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/parser | |
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/parser')
-rw-r--r-- | testsuite/tests/parser/should_compile/all.T | 4 | ||||
-rw-r--r-- | testsuite/tests/parser/should_fail/all.T | 2 |
2 files changed, 3 insertions, 3 deletions
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, ['']) |