[Lldb-commits] [lldb] r234492 - Fix expectedFailureLLGS to expect failure when host platform is not linux.

Robert Flack flackr at gmail.com
Thu Apr 9 07:54:26 PDT 2015


Author: flackr
Date: Thu Apr  9 09:54:26 2015
New Revision: 234492

URL: http://llvm.org/viewvc/llvm-project?rev=234492&view=rev
Log:
Fix expectedFailureLLGS to expect failure when host platform is not linux.

expectedFailureLLGS has an early return false if the platform is not linux
except it should be checking the target platform on which the server is
running for remote tests.

Test Plan:
Verify expected failure when running from mac to remote linux llgs:
TestBreakAfterJoin.py, TestCreateDuringStep.py, TestExitDuringBreak.py,
TestProcessLaunch.py, TestThreadStates.py

Differential Revision: http://reviews.llvm.org/D8869

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=234492&r1=234491&r2=234492&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Thu Apr  9 09:54:26 2015
@@ -606,8 +606,8 @@ def expectedFailureWindows(bugnumber=Non
 
 def expectedFailureLLGS(bugnumber=None, compilers=None):
     def fn(self):
-        # llgs local is only an option on Linux systems
-        if 'linux' not in sys.platform:
+        # llgs local is only an option on Linux targets
+        if not self.platformIsLinux():
             return False
         self.runCmd('settings show platform.plugin.linux.use-llgs-for-local')
         return 'true' in self.res.GetOutput() and self.expectedCompiler(compilers)





More information about the lldb-commits mailing list