From 011f3121955cf08353e384e9b84ed387860ade45 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Thu, 7 Nov 2019 14:32:28 -0500 Subject: [PATCH] testsuite: Mark T16219 as fragile on Windows As noted in #17452, this test produces very long file paths which exceed the Windows MAX_PATH limitation. Mark the test as fragile for not until we can come up with a better solution. --- testsuite/tests/backpack/cabal/T16219/all.T | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuite/tests/backpack/cabal/T16219/all.T b/testsuite/tests/backpack/cabal/T16219/all.T index 29dd8a4d0b41..dc53deb2be9a 100644 --- a/testsuite/tests/backpack/cabal/T16219/all.T +++ b/testsuite/tests/backpack/cabal/T16219/all.T @@ -4,6 +4,7 @@ else: cleanup = 'CLEANUP=0' test('T16219', - extra_files(['Setup.hs', 'backpack-issue.cabal', 'library-a', 'library-a-impl', 'library-b']), + [extra_files(['Setup.hs', 'backpack-issue.cabal', 'library-a', 'library-a-impl', 'library-b']), + when(opsys('mingw32'), fragile(17452))], run_command, ['$MAKE -s --no-print-directory T16219 ' + cleanup]) -- GitLab