[Lldb-commits] [lldb] ba902ef - Skip test when compiling with older versions of clang
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Mon May 8 09:25:10 PDT 2023
Author: Adrian Prantl
Date: 2023-05-08T09:24:40-07:00
New Revision: ba902efa499a092405c207d71a98af1e38853d7b
URL: https://github.com/llvm/llvm-project/commit/ba902efa499a092405c207d71a98af1e38853d7b
DIFF: https://github.com/llvm/llvm-project/commit/ba902efa499a092405c207d71a98af1e38853d7b.diff
LOG: Skip test when compiling with older versions of clang
Added:
Modified:
lldb/test/API/commands/expression/macros/TestMacros.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/expression/macros/TestMacros.py b/lldb/test/API/commands/expression/macros/TestMacros.py
index b39572b6e4408..278683e62ea05 100644
--- a/lldb/test/API/commands/expression/macros/TestMacros.py
+++ b/lldb/test/API/commands/expression/macros/TestMacros.py
@@ -8,6 +8,7 @@
class TestMacros(TestBase):
+ @skipIf(compiler="clang", compiler_version=['<', '9.0'])
@expectedFailureAll(
compiler="clang",
bugnumber="clang does not emit .debug_macro[.dwo] sections.")
More information about the lldb-commits
mailing list