diff options
author | Alp Mestanogullari <alp@well-typed.com> | 2018-05-19 14:00:21 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-05-20 11:01:34 -0400 |
commit | c4219d9f7d122a106fc8fb1e5cd9a62dadadf76c (patch) | |
tree | 70d63e39967b4691ad2a6dc2ec69e258b5f3fc02 /libraries/ghc-compact | |
parent | 9171c7f847bc71770a4bb351c4274069d64cd847 (diff) | |
download | haskell-c4219d9f7d122a106fc8fb1e5cd9a62dadadf76c.tar.gz |
Another batch of './validation --slow' tweaks
This finally gets us to a green ./validate --slow on linux for a ghc
checkout from the beginning of this week, see
https://circleci.com/gh/ghc/ghc/4739
This is hopefully the final (or second to final) patch to
address #14890.
Test Plan: ./validate --slow
Reviewers: bgamari, hvr, simonmar
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
GHC Trac Issues: #14890
Differential Revision: https://phabricator.haskell.org/D4712
Diffstat (limited to 'libraries/ghc-compact')
-rw-r--r-- | libraries/ghc-compact/tests/all.T | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/ghc-compact/tests/all.T b/libraries/ghc-compact/tests/all.T index 0264bab6b2..1f20a4e4ca 100644 --- a/libraries/ghc-compact/tests/all.T +++ b/libraries/ghc-compact/tests/all.T @@ -15,6 +15,9 @@ 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_share', normal, 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']), + compile_and_run, ['']) test('compact_bench', [ ignore_stdout, extra_run_opts('100') ], compile_and_run, ['']) |