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/numeric | |
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/numeric')
-rw-r--r-- | testsuite/tests/numeric/should_run/all.T | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/numeric/should_run/all.T b/testsuite/tests/numeric/should_run/all.T index d2f017a1fe..70bd591503 100644 --- a/testsuite/tests/numeric/should_run/all.T +++ b/testsuite/tests/numeric/should_run/all.T @@ -29,7 +29,7 @@ test('arith011', normal, compile_and_run, ['']) test('arith012', ways, compile_and_run, [opts]) -test('arith013', compose(normal,only_compiler_types(['ghc'])), compile_and_run, ['']) +test('arith013', only_compiler_types(['ghc']), compile_and_run, ['']) test('arith014', normal, compile_and_run, ['']) test('arith015', normal, compile_and_run, ['']) test('numrun009', normal, compile_and_run, ['']) @@ -38,7 +38,7 @@ test('numrun011', normal, compile_and_run, ['']) test('numrun012', normal, compile_and_run, ['']) test('numrun013', normal, compile_and_run, ['']) test('numrun014', normal, compile_and_run, ['']) -test('arith016', compose(normal,only_compiler_types(['ghc'])), compile_and_run, ['']) +test('arith016', [normal,only_compiler_types(['ghc'])], compile_and_run, ['']) test('arith017', normal, compile_and_run, ['']) test('arith018', normal, compile_and_run, ['']) test('arith019', normal, compile_and_run, ['']) |