From 31f2ea6899041974c601ca368b9c2af5e8de125b Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Tue, 11 Jun 2019 16:47:54 -0400 Subject: [PATCH] testsuite: Mark T7170 as broken on Windows Due to #16801. --- testsuite/tests/ffi/should_run/all.T | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testsuite/tests/ffi/should_run/all.T b/testsuite/tests/ffi/should_run/all.T index 1a85e8ac6689..d37919154842 100644 --- a/testsuite/tests/ffi/should_run/all.T +++ b/testsuite/tests/ffi/should_run/all.T @@ -169,7 +169,10 @@ test('ffi_parsing_001', [omit_ways(['ghci'])], compile_and_run, test('capi_value', [omit_ways(['ghci'])], compile_and_run, ['capi_value_c.c']) -test('T7170', exit_code(1), compile_and_run, ['']) +test('T7170', + [when(opsys('mingw32'), fragile(16801)), + exit_code(1)], + compile_and_run, ['']) test('T4012', [expect_broken_for(7388, ['ghci'])], multimod_compile_and_run, ['T4012', '']) -- GitLab