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 /testsuite/tests/patsyn/should_run | |
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 'testsuite/tests/patsyn/should_run')
-rw-r--r-- | testsuite/tests/patsyn/should_run/all.T | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/testsuite/tests/patsyn/should_run/all.T b/testsuite/tests/patsyn/should_run/all.T index 878a7b07f5..57bc41fc73 100644 --- a/testsuite/tests/patsyn/should_run/all.T +++ b/testsuite/tests/patsyn/should_run/all.T @@ -14,6 +14,15 @@ test('records-run', normal, compile_and_run, ['']) test('ghci', just_ghci, ghci_script, ['ghci.script']) test('T11985', just_ghci, ghci_script, ['T11985.script']) test('T11224', normal, compile_and_run, ['']) -test('T13688', normal, multimod_compile_and_run, ['T13688', '-v0']) +# we omit profasm/profthreaded because it doesn't bring much to the table but +# introduces its share of complexity, as the test as it is fails with +# profasm: +# T13688.hs:6:13: fatal: +# Cannot load -prof objects when GHC is built with -dynamic +# To fix this, either: +# (1) Use -fexternal-interpreter, or +# (2) Build the program twice: once with -dynamic, and then +# with -prof using -osuf to set a different object file suffix. +test('T13688', omit_ways(['profasm', 'profthreaded']), multimod_compile_and_run, ['T13688', '-v0']) # Requires UnboxedSums, which GHCi does not support. test('T14228', omit_ways(['ghci']), compile_and_run, ['']) |