diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-07-23 11:31:47 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-07-26 13:23:59 -0400 |
commit | e91672f0b7185bbafbe8ed1f2ae2cb775111f950 (patch) | |
tree | e0b7f2265b3e1ffd6bb3fd824eccb69c65b7d276 /libraries | |
parent | f153a1d0a3351ad4d94cef4cef8e63bab5b47008 (diff) | |
download | haskell-e91672f0b7185bbafbe8ed1f2ae2cb775111f950.tar.gz |
testsuite: Normalise WinIO error message differences
Previously the old Windows IO manager threw different errors than WinIO.
We now canonicalise these to the WinIO errors.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/tests/IO/all.T | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/base/tests/IO/all.T b/libraries/base/tests/IO/all.T index f03f6a01f1..c828975584 100644 --- a/libraries/base/tests/IO/all.T +++ b/libraries/base/tests/IO/all.T @@ -10,7 +10,7 @@ test('IOError001', [omit_ways(['ghci']), set_stdin('IOError001.hs')], test('IOError002', normal, compile_and_run, ['']) test('finalization001', normal, compile_and_run, ['']) test('hClose001', [], compile_and_run, ['']) -test('hClose002', [], compile_and_run, ['']) +test('hClose002', [normalise_win32_io_errors], compile_and_run, ['']) test('hClose003', reqlib('unix'), compile_and_run, ['-package unix']) test('hFileSize001', normal, compile_and_run, ['']) test('hFileSize002', [omit_ways(['ghci'])], compile_and_run, ['']) @@ -61,8 +61,8 @@ test('misc001', [extra_run_opts('misc001.hs misc001.out')], compile_and_run, ['']) test('openFile001', normal, compile_and_run, ['']) -test('openFile002', exit_code(1), compile_and_run, ['']) -test('openFile003', [], compile_and_run, ['']) +test('openFile002', [exit_code(1), normalise_win32_io_errors], compile_and_run, ['']) +test('openFile003', [normalise_win32_io_errors], compile_and_run, ['']) test('openFile004', [], compile_and_run, ['']) test('openFile005', [], compile_and_run, ['']) test('openFile006', [], compile_and_run, ['']) |