diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-07 10:01:31 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-11-07 14:38:43 -0500 |
commit | bcaf25f9ffb00d8bfaca6fdc21369159e745bf6f (patch) | |
tree | 18c5c0e32d529723aabe66bffafac8527a37073a | |
parent | b0a9c32f30713f2b2a1a9626018276a02004d7cb (diff) | |
download | haskell-bcaf25f9ffb00d8bfaca6fdc21369159e745bf6f.tar.gz |
testsuite: Mark T17414 as fragile on Windows
This consistently times out on Windows as described in #17453. I have tried
increasing the timeout multiplier to two yet it stills fails. Disabling
until we have time to investigate.
-rw-r--r-- | libraries/base/tests/IO/all.T | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libraries/base/tests/IO/all.T b/libraries/base/tests/IO/all.T index 427631c933..8584cdaa07 100644 --- a/libraries/base/tests/IO/all.T +++ b/libraries/base/tests/IO/all.T @@ -133,4 +133,8 @@ test('T4808', [fragile_for(16909, ['threaded2']), exit_code(1)], compile_and_run test('T4895', normal, compile_and_run, ['']) test('T7853', normal, compile_and_run, ['']) # Tests ability to perform >32-bit IO operations -test('T17414', [when(wordsize(32), skip), high_memory_usage], compile_and_run, ['']) +test('T17414', + [when(wordsize(32), skip), + when(opsys('mingw32'), fragile(17453)), + high_memory_usage], + compile_and_run, ['']) |