diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-04-25 20:33:52 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-05-17 18:06:05 +0200 |
commit | c92cfbce82e69a785951616e5918a90f221bb7a1 (patch) | |
tree | 17cc19bad3dbd9f9745958a923a3a33f13f32d92 /libraries/base/tests | |
parent | a9dd9b7409ae89423d12909b82b8eb1724217db6 (diff) | |
download | haskell-c92cfbce82e69a785951616e5918a90f221bb7a1.tar.gz |
Testsuite: don't skip concio001 and concio001_thr
I think they were skipped before because they write to the same output
file (concio001). This is no longer a problem.
Diffstat (limited to 'libraries/base/tests')
-rw-r--r-- | libraries/base/tests/IO/Makefile | 4 | ||||
-rw-r--r-- | libraries/base/tests/IO/all.T | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libraries/base/tests/IO/Makefile b/libraries/base/tests/IO/Makefile index 9d5089d90e..d1a9402750 100644 --- a/libraries/base/tests/IO/Makefile +++ b/libraries/base/tests/IO/Makefile @@ -7,11 +7,11 @@ include $(TOP)/mk/boilerplate.mk include $(TOP)/mk/test.mk test.concio001: - $(TEST_HC) $(TEST_HC_OPTS) --make -fforce-recomp -v0 concio001 -o concio001 + "$(TEST_HC)" $(TEST_HC_OPTS) --make -fforce-recomp -v0 concio001 -o concio001 (sleep 1; echo x) | ./concio001 test.concio001.thr: - $(TEST_HC) $(TEST_HC_OPTS) --make -fforce-recomp -v0 -threaded concio001 -o concio001 + "$(TEST_HC)" $(TEST_HC_OPTS) --make -fforce-recomp -v0 -threaded concio001 -o concio001 (sleep 1; echo x) | ./concio001 # NB. utf8-test should *not* have a final newline. The last char should be 'X'. diff --git a/libraries/base/tests/IO/all.T b/libraries/base/tests/IO/all.T index 396e9b7336..d04f3c4c4a 100644 --- a/libraries/base/tests/IO/all.T +++ b/libraries/base/tests/IO/all.T @@ -107,8 +107,8 @@ test('countReaders001', extra_clean(['countReaders001.txt']), compile_and_run, ['']) -test('concio001', skip, run_command, ['$MAKE -s --no-print-directory test.concio001']) -test('concio001.thr', skip, run_command, ['$MAKE -s --no-print-directory test.concio001.thr']) +test('concio001', normal, run_command, ['$MAKE -s --no-print-directory test.concio001']) +test('concio001.thr', normal, run_command, ['$MAKE -s --no-print-directory test.concio001.thr']) test('concio002', reqlib('process'), compile_and_run, ['']) |