[Lldb-commits] [lldb] r300837 - Skip TestLibCxxAtomic with gcc

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 20 05:30:31 PDT 2017


Author: labath
Date: Thu Apr 20 07:30:30 2017
New Revision: 300837

URL: http://llvm.org/viewvc/llvm-project?rev=300837&view=rev
Log:
Skip TestLibCxxAtomic with gcc

older versions of libc++ (still used on some linux systems) are not
compatible with gcc.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py?rev=300837&r1=300836&r2=300837&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py Thu Apr 20 07:30:30 2017
@@ -23,6 +23,7 @@ class LibCxxAtomicTestCase(TestBase):
         var.SetPreferSyntheticValue(True)
         return var
 
+    @skipIf(compiler=["gcc"])
     @add_test_categories(["libc++"])
     def test(self):
         """Test that std::atomic as defined by libc++ is correctly printed by LLDB"""




More information about the lldb-commits mailing list