diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-03-04 19:16:09 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-03-20 18:41:32 -0400 |
commit | 88a6e9a4e596d22d1dd8b983a15781183050f51a (patch) | |
tree | a8318d5a6f0a6c7fd320dae414b6ca95d1167175 /testsuite | |
parent | a0c31f78647efc1f9aba6c7ac52f64237143b539 (diff) | |
download | haskell-88a6e9a4e596d22d1dd8b983a15781183050f51a.tar.gz |
testsuite: Mark T10672 as broken
This test, which is only run on Windows, seems to be reliably timing
out.
See #16390.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/rts/T10672/all.T | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/tests/rts/T10672/all.T b/testsuite/tests/rts/T10672/all.T index 1e04f1ba3f..5e0c43c81f 100644 --- a/testsuite/tests/rts/T10672/all.T +++ b/testsuite/tests/rts/T10672/all.T @@ -1,9 +1,11 @@ test('T10672_x64', [extra_files(['Main.hs', 'Printf.hs', 'cxxy.cpp']), - [unless(opsys('mingw32'), skip), unless(arch('x86_64'), skip)]], + unless(opsys('mingw32'), skip), unless(arch('x86_64'), skip), + when(opsys('mingw32'), expect_broken(16390))], makefile_test, ['T10672_x64']) test('T10672_x86', [extra_files(['Main.hs', 'Printf.hs', 'cxxy.cpp']), - [unless(opsys('mingw32'), skip), unless(arch('i386'), skip)]], + unless(opsys('mingw32'), skip), unless(arch('i386'), skip), + when(opsys('mingw32'), expect_broken(16390))], makefile_test, ['T10672_x86']) |