[Lldb-commits] [lldb] 4b17702 - [lldb/Reproducers] Skip another test that uses lldb::FileSP under the hood
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed May 20 09:50:31 PDT 2020
Author: Jonas Devlieghere
Date: 2020-05-20T09:49:29-07:00
New Revision: 4b17702434af9631e5e5a16449a93c9734be0c7e
URL: https://github.com/llvm/llvm-project/commit/4b17702434af9631e5e5a16449a93c9734be0c7e
DIFF: https://github.com/llvm/llvm-project/commit/4b17702434af9631e5e5a16449a93c9734be0c7e.diff
LOG: [lldb/Reproducers] Skip another test that uses lldb::FileSP under the hood
Added:
Modified:
lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
Removed:
################################################################################
diff --git a/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
index 09f44f554118..65c4dac48490 100644
--- a/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
+++ b/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
@@ -114,6 +114,7 @@ def test_SBCompileUnit(self):
sb_compileunit.fuzz_obj(obj)
@add_test_categories(['pyapi'])
+ @skipIfReproducer # lldb::FileSP used in typemap cannot be instrumented.
def test_SBDebugger(self):
obj = lldb.SBDebugger()
if self.TraceOn():
@@ -180,6 +181,7 @@ def test_SBFunction(self):
sb_function.fuzz_obj(obj)
@add_test_categories(['pyapi'])
+ @skipIfReproducer # lldb::FileSP used in typemap cannot be instrumented.
def test_SBFile(self):
sbf = lldb.SBFile()
self.assertFalse(sbf.IsValid())
More information about the lldb-commits
mailing list