[Lldb-commits] [lldb] r255747 - Disable test reruns on arm unless explicitly marked with --rerun-all-issues
Todd Fiala via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 15 18:46:58 PST 2015
Author: tfiala
Date: Tue Dec 15 20:46:57 2015
New Revision: 255747
URL: http://llvm.org/viewvc/llvm-project?rev=255747&view=rev
Log:
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
Modified:
lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py?rev=255747&r1=255746&r2=255747&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py Tue Dec 15 20:46:57 2015
@@ -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:
More information about the lldb-commits
mailing list