summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-11-07 10:01:31 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-11-09 18:03:38 -0500
commit4d523cb142f69e91b0ff2d0f8f98bdded20cba9a (patch)
tree407d9c9388603c40a8619df421dbc1fe76c764fc
parent1f871e708458f3ff4b210d6a7692308cf61b477d (diff)
downloadhaskell-4d523cb142f69e91b0ff2d0f8f98bdded20cba9a.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.T6
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, [''])