diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-09-26 10:01:29 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-27 22:17:44 -0400 |
commit | e0bbb96167fafbc4ed8491731fbcc3353fd8c97d (patch) | |
tree | 1d2fa0ddef2202b5930931c0aae1dc669e12c8ef | |
parent | 24620182abdfcc65a0cfc0e2f3bc391d464d0ad5 (diff) | |
download | haskell-e0bbb96167fafbc4ed8491731fbcc3353fd8c97d.tar.gz |
testsuite: Mark compact_gc as fragile in the ghci way
As noted in #17253.
-rw-r--r-- | libraries/ghc-compact/tests/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/ghc-compact/tests/all.T b/libraries/ghc-compact/tests/all.T index 1f20a4e4ca..ec0d20fe05 100644 --- a/libraries/ghc-compact/tests/all.T +++ b/libraries/ghc-compact/tests/all.T @@ -14,7 +14,7 @@ test('compact_cycle', extra_run_opts('+RTS -K1m'), compile_and_run, ['']) test('compact_function', exit_code(1), compile_and_run, ['']) test('compact_mutable', exit_code(1), compile_and_run, ['']) test('compact_pinned', exit_code(1), compile_and_run, ['']) -test('compact_gc', ignore_stdout, compile_and_run, ['']) +test('compact_gc', [fragile_for(17253, ['ghci']), ignore_stdout], compile_and_run, ['']) # this test computes closure sizes and those are affected # by the ghci and prof ways, because of BCOs and profiling headers. test('compact_share', omit_ways(['ghci', 'profasm', 'profthreaded']), |