[Lldb-commits] [lldb] 82d6a96 - disable test on older compilers

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 13 11:59:12 PST 2021


Author: Adrian Prantl
Date: 2021-12-13T11:59:05-08:00
New Revision: 82d6a96e129e959f78173a4ad5d165380f98d3f5

URL: https://github.com/llvm/llvm-project/commit/82d6a96e129e959f78173a4ad5d165380f98d3f5
DIFF: https://github.com/llvm/llvm-project/commit/82d6a96e129e959f78173a4ad5d165380f98d3f5.diff

LOG: disable test on older compilers

Added: 
    

Modified: 
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multimap/TestDataFormatterGenericMultiMap.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multimap/TestDataFormatterGenericMultiMap.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multimap/TestDataFormatterGenericMultiMap.py
index 62cd06b421fe4..6a6ad26c9cfdd 100644
--- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multimap/TestDataFormatterGenericMultiMap.py
+++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multimap/TestDataFormatterGenericMultiMap.py
@@ -328,9 +328,11 @@ def cleanup():
         self.check("ss", 0)
 
     @add_test_categories(["libstdcxx"])
+    @skipIf(compiler="clang", compiler_version=['<', '9.0'])
     def test_with_run_command_libstdcpp(self):
         self.do_test_with_run_command(USE_LIBSTDCPP)
 
+    @skipIf(compiler="clang", compiler_version=['<', '9.0'])
     @add_test_categories(["libc++"])
     def test_with_run_command_libcpp(self):
         self.do_test_with_run_command(USE_LIBCPP)


        


More information about the lldb-commits mailing list