[Lldb-commits] [lldb] r238368 - [TestNamespace] Fix an accidentally committed local change.

Siva Chandra sivachandra at google.com
Wed May 27 15:39:21 PDT 2015


Author: sivachandra
Date: Wed May 27 17:39:21 2015
New Revision: 238368

URL: http://llvm.org/viewvc/llvm-project?rev=238368&view=rev
Log:
[TestNamespace] Fix an accidentally committed local change.

Test Plan: dotest.py -p TestNamespace

Reviewers: sivachandra

Subscribers: lldb-commits

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

Modified:
    lldb/trunk/test/lang/cpp/namespace/TestNamespace.py

Modified: lldb/trunk/test/lang/cpp/namespace/TestNamespace.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/namespace/TestNamespace.py?rev=238368&r1=238367&r2=238368&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/namespace/TestNamespace.py (original)
+++ lldb/trunk/test/lang/cpp/namespace/TestNamespace.py Wed May 27 17:39:21 2015
@@ -41,7 +41,7 @@ class NamespaceTestCase(TestBase):
 
     def namespace_variable_commands(self):
         """Test that anonymous and named namespace variables display correctly."""
-        self.runCmd("run a.out", RUN_FAILED)
+        self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
 
         lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line_break, num_expected_locations=1, loc_exact=True)
 





More information about the lldb-commits mailing list