diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-20 11:16:01 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-12-20 11:17:24 -0500 |
commit | ec8bcbd071c7253c8a615dbeb10e95aa8589009e (patch) | |
tree | 9c00374ca58745923a02b2345921a71166d043a6 | |
parent | a8f7ecd54821493dc061c55ceebb7e271b17056e (diff) | |
download | haskell-wip/skip-T17499.tar.gz |
testsuite: Skip T17499 when built against integer-simplewip/skip-T17499
Since it routinely times out in CI.
-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']) |