Author: Raphael Isemann
Date: 2020-02-19T13:21:51+01:00
New Revision: 4a9011dcdade7cd562e0488d387ccbbaf2eee6c8

URL: 
https://github.com/llvm/llvm-project/commit/4a9011dcdade7cd562e0488d387ccbbaf2eee6c8
DIFF: 
https://github.com/llvm/llvm-project/commit/4a9011dcdade7cd562e0488d387ccbbaf2eee6c8.diff

LOG: [lldb] Skip failing parts of TestCppConstructors that use 'new' on Windows

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/constructors/TestCppConstructors.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/constructors/TestCppConstructors.py 
b/lldb/test/API/lang/cpp/constructors/TestCppConstructors.py
index 77e17b93bbc9..e330093a8467 100644
--- a/lldb/test/API/lang/cpp/constructors/TestCppConstructors.py
+++ b/lldb/test/API/lang/cpp/constructors/TestCppConstructors.py
@@ -25,6 +25,7 @@ def test_constructors(self):
         self.expect("expr ClassWithDeletedCtor(1).value", error=True, 
substrs=["Couldn't lookup symbols:"])
         self.expect("expr ClassWithDeletedDefaultCtor().value", error=True, 
substrs=["Couldn't lookup symbols:"])
 
+    @skipIfWindows # Can't find operator new.
     @skipIfLinux # Fails on some Linux systems with SIGABRT.
     def test_constructors_new(self):
         self.build()


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

Reply via email to