diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-20 11:16:01 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-27 15:11:38 -0500 |
commit | 68252aa3eb833c9747c59de3a7655a1def1b7a76 (patch) | |
tree | e1824488195b66c5446a804ec5b1aaf3798abc20 /libraries | |
parent | 334290b6681796dd141c964b88c541da13ce03c7 (diff) | |
download | haskell-68252aa3eb833c9747c59de3a7655a1def1b7a76.tar.gz |
testsuite: Skip T17499 when built against integer-simple
Since it routinely times out in CI.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/tests/all.T | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libraries/base/tests/all.T b/libraries/base/tests/all.T index e5130d0348..f2b4764699 100644 --- a/libraries/base/tests/all.T +++ b/libraries/base/tests/all.T @@ -253,4 +253,6 @@ test('T15349', [exit_code(1), expect_broken_for(15349, ['ghci'])], compile_and_r test('T16111', exit_code(1), compile_and_run, ['']) test('T16943a', normal, compile_and_run, ['']) test('T16943b', normal, compile_and_run, ['']) -test('T17499', collect_stats('bytes allocated',5), compile_and_run, ['-O -w']) +# This frequently times out with integer-simple +test('T17499', [when(integer_simple(), skip), collect_stats('bytes allocated',5)], + compile_and_run, ['-O -w']) |