[Lldb-commits] [lldb] r232171 - Make TestSBFrameFindValue compatible with remote targets

Tamas Berghammer tberghammer at google.com
Fri Mar 13 07:54:42 PDT 2015


Author: tberghammer
Date: Fri Mar 13 09:54:42 2015
New Revision: 232171

URL: http://llvm.org/viewvc/llvm-project?rev=232171&view=rev
Log:
Make TestSBFrameFindValue compatible with remote targets

Modified:
    lldb/trunk/test/python_api/findvalue_duplist/TestSBFrameFindValue.py

Modified: lldb/trunk/test/python_api/findvalue_duplist/TestSBFrameFindValue.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/findvalue_duplist/TestSBFrameFindValue.py?rev=232171&r1=232170&r2=232171&view=diff
==============================================================================
--- lldb/trunk/test/python_api/findvalue_duplist/TestSBFrameFindValue.py (original)
+++ lldb/trunk/test/python_api/findvalue_duplist/TestSBFrameFindValue.py Fri Mar 13 09:54:42 2015
@@ -45,7 +45,7 @@ class SBFrameFindValueTestCase(TestBase)
         self.assertTrue(breakpoint.GetNumLocations() > 0, VALID_BREAKPOINT)
 
         # Launch the process, and do not stop at the entry point.
-        process = target.LaunchSimple(None, None, os.getcwd())
+        process = target.LaunchSimple(None, None, self.get_process_working_directory())
 
         self.assertTrue(process, PROCESS_IS_VALID)
 





More information about the lldb-commits mailing list