From 1ca6a4748487a5c64ed266e162f565a35bb68777 Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Fri, 6 Mar 2020 00:46:06 -0500 Subject: [PATCH] i#2892,i#3980: Ignore known-flaky tests on A64 Adds drcachesim.invariants (i#2982) and tool.histogram.offline (i#3980) to the tests whose failures are ignored, until we can reproduce and fix them. Issue: #2892, #3980 --- suite/runsuite_wrapper.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/suite/runsuite_wrapper.pl b/suite/runsuite_wrapper.pl index 3a88fa4904b..7f5f17e96aa 100755 --- a/suite/runsuite_wrapper.pl +++ b/suite/runsuite_wrapper.pl @@ -230,7 +230,9 @@ 'code_api|tool.histogram.gzip' => 1); # FIXME i#2417: fix flaky AArch64 tests %ignore_failures_64 = ('code_api|linux.sigsuspend' => 1, - 'code_api|pthreads.pthreads_exit' => 1); + 'code_api|pthreads.pthreads_exit' => 1, + 'code_api|drcachesim.invariants' => 1, # i#2892 + 'code_api|tool.histogram.offline' => 1); # i#3980 if ($is_32) { $issue_no = "#2416"; } else {