From 4d523cb142f69e91b0ff2d0f8f98bdded20cba9a Mon Sep 17 00:00:00 2001
From: Ben Gamari <ben@smart-cactus.org>
Date: Thu, 7 Nov 2019 10:01:31 -0500
Subject: [PATCH] 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.
---
 libraries/base/tests/IO/all.T | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libraries/base/tests/IO/all.T b/libraries/base/tests/IO/all.T
index 427631c933e7..8584cdaa0791 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, [''])
-- 
GitLab