diff options
author | Austin Seipp <austin@well-typed.com> | 2015-04-03 06:33:26 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-04-03 14:46:48 -0500 |
commit | b0ba0545b3a238d9a9b93a8f68ed96a90be20c40 (patch) | |
tree | db3554424fc69dcf7ce4ea33aacf6576abc26756 | |
parent | 54b7dc5537f8b871e655752bace1ad6f5e6fe89a (diff) | |
download | haskell-b0ba0545b3a238d9a9b93a8f68ed96a90be20c40.tar.gz |
testsuite: skip T10017 on Windows
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r-- | testsuite/tests/rts/all.T | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 05253fe1b6..3965ee4f01 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -244,7 +244,8 @@ test('T9045', [ omit_ways(['ghci']), extra_run_opts('10000 +RTS -A8k -RTS') ], c # with the non-threaded one. test('T9078', [ omit_ways(threaded_ways) ], compile_and_run, ['-with-rtsopts="-DS" -debug']) -test('T10017', [ only_ways(threaded_ways), extra_run_opts('+RTS -N2 -RTS') ], compile_and_run, ['']) +test('T10017', [ when(opsys('mingw32'), skip) + , only_ways(threaded_ways), extra_run_opts('+RTS -N2 -RTS') ], compile_and_run, ['']) test('rdynamic', [ unless(opsys('linux') or opsys('mingw32'), skip) # this needs runtime infrastructure to do in ghci: |