aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Ian Lynagh <ian@well-typed.com>2013-02-14 14:48:06 +0000
committerGravatar Ian Lynagh <ian@well-typed.com>2013-02-14 14:48:06 +0000
commitd48e61c63f8e26124ef1917ecc20a0641137068b (patch)
treeb1b8a1f85b5cec4e29fa5373f461aabe5d6ac5bb /tests
parent70030c700ebb3123a27fae27d6daef52334ec9ab (diff)
Remove uses of compose(s) in tests
Diffstat (limited to 'tests')
-rw-r--r--tests/all.T7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/all.T b/tests/all.T
index c849a69..eb220c9 100644
--- a/tests/all.T
+++ b/tests/all.T
@@ -16,13 +16,14 @@ test('resourceLimit', normal, compile_and_run, ['-package unix'])
x86FreeBsdFail = when(platform('i386-unknown-freebsd'), expect_fail)
-test('queryfdoption01', compose(omit_ways(['ghci']), compose(only_compiler_types(['ghc']), x86FreeBsdFail)),
+test('queryfdoption01',
+ [omit_ways(['ghci']), only_compiler_types(['ghc']), x86FreeBsdFail],
compile_and_run, ['-package unix'])
test('getEnvironment01', x86FreeBsdFail, compile_and_run, ['-package unix'])
test('getEnvironment02', x86FreeBsdFail, compile_and_run, ['-package unix'])
-test('getGroupEntryForName', compose(x86FreeBsdFail, exit_code(1)), compile_and_run,
+test('getGroupEntryForName', [x86FreeBsdFail, exit_code(1)], compile_and_run,
['-package unix'])
-test('getUserEntryForName', compose(x86FreeBsdFail, exit_code(1)), compile_and_run,
+test('getUserEntryForName', [x86FreeBsdFail, exit_code(1)], compile_and_run,
['-package unix'])