diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-02-14 14:48:09 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-02-14 15:41:43 +0000 |
commit | aea57e43c46923be8195896df22bcc2b60ebd8d1 (patch) | |
tree | 82aaf71755608e8959fcf37f26c3caa84330e5d2 /testsuite/tests/array | |
parent | be6d11c3543851fa067eaae0ccb4e17dd97f2b78 (diff) | |
download | haskell-aea57e43c46923be8195896df22bcc2b60ebd8d1.tar.gz |
Remove uses of compose(s) in tests, and change how composition is handled
The driver now also supports nested lists of setup functions
Diffstat (limited to 'testsuite/tests/array')
-rw-r--r-- | testsuite/tests/array/should_run/all.T | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/array/should_run/all.T b/testsuite/tests/array/should_run/all.T index a0cfc6be35..6b5500700e 100644 --- a/testsuite/tests/array/should_run/all.T +++ b/testsuite/tests/array/should_run/all.T @@ -6,12 +6,12 @@ test('arr001', when(fast(), skip), compile_and_run, ['']) test('arr002', when(fast(), skip), compile_and_run, ['']) -test('arr003', compose(when(fast(), skip),exit_code(1)), compile_and_run, ['']) -test('arr004', compose(when(fast(), skip),exit_code(1)), compile_and_run, ['']) +test('arr003', [when(fast(), skip),exit_code(1)], compile_and_run, ['']) +test('arr004', [when(fast(), skip),exit_code(1)], compile_and_run, ['']) test('arr005', when(fast(), skip), compile_and_run, ['']) test('arr006', when(fast(), skip), compile_and_run, ['']) -test('arr007', compose(when(fast(), skip),exit_code(1)), compile_and_run, ['']) -test('arr008', compose(when(fast(), skip),exit_code(1)), compile_and_run, ['']) +test('arr007', [when(fast(), skip),exit_code(1)], compile_and_run, ['']) +test('arr008', [when(fast(), skip),exit_code(1)], compile_and_run, ['']) test('arr009', when(fast(), skip), compile_and_run, ['']) test('arr010', when(fast(), skip), compile_and_run, ['']) test('arr011', when(fast(), skip), compile_and_run, ['']) |