diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-22 13:02:08 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-22 13:02:08 -0500 |
commit | 8fd3f9a67f9c7b447a5bfcb3aefd8986794918ce (patch) | |
tree | 228032aadc9251d470ec3293b3fb5975e57c10ae | |
parent | 1c0c5e844226f3d77af31d97b21ffb8b14b55740 (diff) | |
download | haskell-8fd3f9a67f9c7b447a5bfcb3aefd8986794918ce.tar.gz |
testsuite: Mark heapprof001 as broken in prof_hc_hb way on i386
As documented in #15382, this is known to fail in prof_hc_hb on i386.
Concerningly, I have also seen this test non-deterministically fail in
prof_hc_hb on amd64. We should really investigate this.
-rw-r--r-- | testsuite/tests/profiling/should_run/all.T | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/tests/profiling/should_run/all.T b/testsuite/tests/profiling/should_run/all.T index 8d605f2da2..c3d34af2bf 100644 --- a/testsuite/tests/profiling/should_run/all.T +++ b/testsuite/tests/profiling/should_run/all.T @@ -23,7 +23,9 @@ expect_broken_for_10037 = expect_broken_for( # e.g. prof and profllvm test('heapprof001', - [when(have_profiling(), extra_ways(extra_prof_ways)), extra_run_opts('7')], + [when(have_profiling(), extra_ways(extra_prof_ways)), + when(arch('i386'), expect_broken_for(15382, ['prof_hc_hb'])), + extra_run_opts('7')], compile_and_run, ['']) test('T2592', |