diff options
author | Tamar Christina <tamar@zhox.com> | 2016-12-12 14:21:27 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-14 10:03:28 -0400 |
commit | 16c70dafe21ddf8da6085e22994376a9c79628fb (patch) | |
tree | 766eb2f598b772cf229ba40ecd6f1e5d7f764e38 /testsuite/tests/rts | |
parent | f7b9456cbec62a68806a945479e539ae5a984a4e (diff) | |
download | haskell-16c70dafe21ddf8da6085e22994376a9c79628fb.tar.gz |
Disable T12903 on Darwin due to flakiness
Test seems to randomly fail on harbormaster and CircleCI. Disabling it
until it can be fixed.
Test Plan: make test TEST=T12903
Reviewers: austin, bgamari, simonmar, mpickering
Reviewed By: mpickering
Subscribers: mpickering, thomie, qnikst
GHC Trac Issues: #12903
Diffstat (limited to 'testsuite/tests/rts')
-rw-r--r-- | testsuite/tests/rts/all.T | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 663d8b71f2..2faa7b744c 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -386,9 +386,11 @@ test('T12497', [ unless(opsys('mingw32'), skip) # This test sometimes produces out of sequence samples in the profasm way, but # not reliably, so we just skip it. See ticket #15065. +# Test is being skipped on darwin due to it's flakiness. test('T12903', [ when(opsys('mingw32'), skip) - , omit_ways(['ghci', 'profasm']) - ], compile_and_run, ['']) + , when(opsys('darwin'), skip) + , omit_ways(['ghci', 'profasm'])] + , compile_and_run, ['']) test('T13832', exit_code(1), compile_and_run, ['-threaded']) test('T13894', normal, compile_and_run, ['']) |