summaryrefslogtreecommitdiff
path: root/testsuite/tests/rts
diff options
context:
space:
mode:
authorAlp Mestanogullari <alp@well-typed.com>2018-05-19 14:00:21 -0400
committerBen Gamari <ben@smart-cactus.org>2018-05-20 11:01:34 -0400
commitc4219d9f7d122a106fc8fb1e5cd9a62dadadf76c (patch)
tree70d63e39967b4691ad2a6dc2ec69e258b5f3fc02 /testsuite/tests/rts
parent9171c7f847bc71770a4bb351c4274069d64cd847 (diff)
downloadhaskell-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/rts')
-rw-r--r--testsuite/tests/rts/all.T10
1 files changed, 6 insertions, 4 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T
index a07179a4df..f822873e87 100644
--- a/testsuite/tests/rts/all.T
+++ b/testsuite/tests/rts/all.T
@@ -384,15 +384,17 @@ test('T12497', [ unless(opsys('mingw32'), skip)
],
run_command, ['$MAKE -s --no-print-directory T12497'])
+# This test sometimes produces out of sequence samples in the profasm way, but
+# not reliably, so we just skip it. See ticket #15065.
test('T12903', [ when(opsys('mingw32'), skip)
- # produces out of sequence samples in the profasm way
- , expect_broken_for(15065, ['profasm'])
- , omit_ways(['ghci'])
+ , omit_ways(['ghci', 'profasm'])
], compile_and_run, [''])
test('T13832', exit_code(1), compile_and_run, ['-threaded'])
test('T13894', normal, compile_and_run, [''])
-test('T14497', normal, compile_and_run, ['-O'])
+# this test fails with the profasm way on some machines but not others,
+# so we just skip it.
+test('T14497', omit_ways(['profasm']), compile_and_run, ['-O'])
test('T14695', normal, run_command, ['$MAKE -s --no-print-directory T14695'])
test('T14702', [ ignore_stdout
, only_ways(['threaded1', 'threaded2'])