[Lldb-commits] [lldb] r233190 - Fix not_remote_testsuite_ready annotation in the test runner

Tamas Berghammer tberghammer at google.com
Wed Mar 25 08:13:28 PDT 2015


Author: tberghammer
Date: Wed Mar 25 10:13:28 2015
New Revision: 233190

URL: http://llvm.org/viewvc/llvm-project?rev=233190&view=rev
Log:
Fix not_remote_testsuite_ready annotation in the test runner

Treat a test run as remote run also if lldb.remote_platform is set.

Modified:
    lldb/trunk/test/lldbtest.py

Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=233190&r1=233189&r2=233190&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Wed Mar 25 10:13:28 2015
@@ -523,7 +523,7 @@ def not_remote_testsuite_ready(func):
     @wraps(func)
     def wrapper(self, *args, **kwargs):
         try:
-            if lldb.lldbtest_remote_sandbox:
+            if lldb.lldbtest_remote_sandbox or lldb.remote_platform:
                 self.skipTest("not ready for remote testsuite")
         except AttributeError:
             pass





More information about the lldb-commits mailing list