diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-10-11 17:34:44 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-10-11 17:34:44 +0000 |
commit | 766a0cb1e082efa85f01187b68c9a784b3ed62f5 (patch) | |
tree | 62ad6306ae683c483832e61f455507c12b143871 /lldb/packages/Python/lldbsuite/test/commands/expression | |
parent | e3388c42f39b6715e9aa1c7594fb0dcf9429e111 (diff) | |
download | bcm5719-llvm-766a0cb1e082efa85f01187b68c9a784b3ed62f5.tar.gz bcm5719-llvm-766a0cb1e082efa85f01187b68c9a784b3ed62f5.zip |
[lldb] Mark import-std-module/empty-module as libc++ test
Same as with the import-std-module/sysroot test before.
llvm-svn: 374574
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/expression')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py b/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py index 94af997298f..7df275d5bad 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py @@ -11,6 +11,10 @@ class ImportStdModule(TestBase): mydir = TestBase.compute_mydir(__file__) + # We only emulate a fake libc++ in this test and don't use the real libc++, + # but we still add the libc++ category so that this test is only run in + # test configurations where libc++ is actually supposed to be tested. + @add_test_categories(["libc++"]) @skipIf(compiler=no_match("clang")) def test(self): self.build() |