forked from OSchip/llvm-project
Disable test reruns on arm unless explicitly marked with --rerun-all-issues
Workaround part 2 for: https://llvm.org/bugs/show_bug.cgi?id=25844 llvm-svn: 255747
This commit is contained in:
parent
9ce27bba29
commit
cd817ba2ef
|
@ -737,7 +737,8 @@ class ResultsFormatter(object):
|
|||
key in self.rerun_eligible_tests and
|
||||
# llvm.org/pr25844 workaround: temporarily prevent
|
||||
# rerun eligibility when building for Android.
|
||||
"aarch64" not in configuration.archs)
|
||||
"aarch64" not in configuration.archs and
|
||||
"arm" not in configuration.archs)
|
||||
if (test_is_directly_eligible or configuration.rerun_all_issues):
|
||||
test_filename = result_event.get("test_filename", None)
|
||||
if test_filename is not None:
|
||||
|
|
Loading…
Reference in New Issue