[Lldb-commits] [lldb] r255935 - Revert "Disable test reruns on arm unless explicitly marked with --rerun-all-issues"

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 17 14:42:50 PST 2015


Author: tfiala
Date: Thu Dec 17 16:42:50 2015
New Revision: 255935

URL: http://llvm.org/viewvc/llvm-project?rev=255935&view=rev
Log:
Revert "Disable test reruns on arm unless explicitly marked with --rerun-all-issues"

and
Revert "prevent rerun logic from kicking in on test runs including aarch64."

This reverts commits:
r255719
r255747

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=255935&r1=255934&r2=255935&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/result_formatter.py Thu Dec 17 16:42:50 2015
@@ -762,13 +762,8 @@ class ResultsFormatter(object):
     def _maybe_add_test_to_rerun_list(self, result_event):
         key = self._make_key(result_event)
         if key is not None:
-            test_is_directly_eligible = (
-                key in self.rerun_eligible_tests and
-                # llvm.org/pr25844 workaround: temporarily prevent
-                # rerun eligibility when building for Android.
-                "aarch64" not in configuration.archs and
-                "arm" not in configuration.archs)
-            if (test_is_directly_eligible or configuration.rerun_all_issues):
+            if (key in self.rerun_eligible_tests or
+                    configuration.rerun_all_issues):
                 test_filename = result_event.get("test_filename", None)
                 if test_filename is not None:
                     test_name = result_event.get("test_name", None)




More information about the lldb-commits mailing list