[Lldb-commits] [lldb] r354048 - Add explicit language specifier to test.

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 14 10:49:14 PST 2019


Author: adrian
Date: Thu Feb 14 10:49:14 2019
New Revision: 354048

URL: http://llvm.org/viewvc/llvm-project?rev=354048&view=rev
Log:
Add explicit language specifier to test.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py?rev=354048&r1=354047&r2=354048&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py Thu Feb 14 10:49:14 2019
@@ -27,5 +27,5 @@ class CXXModulesImportTestCase(TestBase)
         target, process, thread, bkpt = lldbutil.run_to_source_breakpoint(
             self, 'break here', lldb.SBFileSpec('main.cpp'))
 
-        self.expect("expr -- @import Bar")
+        self.expect("expr -l Objective-C++ -- @import Bar")
         self.expect("expr -- Bar()", substrs = ["success"])




More information about the lldb-commits mailing list