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.")


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to