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 /libraries/base/tests/IO | |
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 'libraries/base/tests/IO')
-rw-r--r-- | libraries/base/tests/IO/all.T | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/libraries/base/tests/IO/all.T b/libraries/base/tests/IO/all.T index e15c84d9f8..f6c8cc93cb 100644 --- a/libraries/base/tests/IO/all.T +++ b/libraries/base/tests/IO/all.T @@ -72,21 +72,14 @@ test('openFile001', normal, compile_and_run, ['']) test('openFile002', exit_code(1), compile_and_run, ['']) test('openFile003', extra_clean(['openFile003Dir']), compile_and_run, ['']) test('openFile004', extra_clean(['openFile004.out']), compile_and_run, ['']) -test('openFile005', - [when(compiler_type('hugs'), expect_fail), - extra_clean(['openFile005.out1', 'openFile005.out2'])], +test('openFile005', extra_clean(['openFile005.out1', 'openFile005.out2']), compile_and_run, ['']) test('openFile006', extra_clean(['openFile006.out']), compile_and_run, ['']) -test('openFile007', - [when(compiler_type('hugs'), expect_fail), - extra_clean(['openFile007.out'])], - compile_and_run, ['']) +test('openFile007', extra_clean(['openFile007.out']), compile_and_run, ['']) test('openFile008', cmd_prefix('ulimit -n 1024; '), compile_and_run, ['']) test('putStr001', normal, compile_and_run, ['']) -test('readFile001', - [when(compiler_type('hugs'), expect_fail), - extra_clean(['readFile001.out'])], +test('readFile001', extra_clean(['readFile001.out']), compile_and_run, ['']) test('readwrite001', extra_clean(['readwrite001.inout']), |