[lldb] Mark TestTsanBasic and TestUbsanBasic as "no debug info" tests

Speed up testing by not rerunning the test for all debug info variants.
This commit is contained in:
Jonas Devlieghere 2021-11-30 11:33:09 -08:00
parent a08b750ce9
commit 5f2e8f5796
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ class TsanBasicTestCase(TestBase):
@skipIfFreeBSD # llvm.org/pr21136 runtimes not yet available by default
@skipIfRemote
@skipUnlessThreadSanitizer
@no_debug_info_test
def test(self):
self.build()
self.tsan_tests()

View File

@ -15,6 +15,7 @@ class UbsanBasicTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@skipUnlessUndefinedBehaviorSanitizer
@no_debug_info_test
def test(self):
self.build()
self.ubsan_tests()