diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-02-14 18:49:14 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-02-14 18:49:14 +0000 |
commit | 8400eb32794a15f57bbf1be53fcea8be76a32a35 (patch) | |
tree | 8fef0ddfa546405ed94eabe1b7add9f022dffab6 /lldb/packages/Python/lldbsuite/test/lang/cpp | |
parent | b3a4649a6a27aa4b70b360445f6d2c600db8dff7 (diff) | |
download | bcm5719-llvm-8400eb32794a15f57bbf1be53fcea8be76a32a35.tar.gz bcm5719-llvm-8400eb32794a15f57bbf1be53fcea8be76a32a35.zip |
Add explicit language specifier to test.
llvm-svn: 354048
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py index 9601db2586a..74ac4005673 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py @@ -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"]) |