diff options
author | Zachary Turner <zturner@google.com> | 2015-12-14 18:49:16 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-14 18:49:16 +0000 |
commit | f098e4fb19064e23ed0247e0ed8e769354249d9c (patch) | |
tree | 721a36816b8c4e51c885f335b809ef5a5d2adb5c /lldb/packages/Python/lldbsuite/test/lang/cpp | |
parent | 4ae76c26928324698b2c8a290964f9709887bda6 (diff) | |
download | bcm5719-llvm-f098e4fb19064e23ed0247e0ed8e769354249d9c.tar.gz bcm5719-llvm-f098e4fb19064e23ed0247e0ed8e769354249d9c.zip |
Make debug info specification use categories system.
Reviewed By: Tamas Berghammer, Pavel Labath
Differential Revision: http://reviews.llvm.org/D15428
llvm-svn: 255525
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py index cdc8b8de7a0..ec26f9efe90 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py @@ -6,9 +6,9 @@ class TestWithLimitDebugInfo(TestBase): mydir = TestBase.compute_mydir(__file__) - @dwarf_test - def test_with_dwarf(self): - self.buildDwarf() + @skipIf(debug_info=not_in(["dwarf"])) + def test_limit_debug_info(self): + self.build() cwd = os.getcwd() |