aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authortcwg <tcwg@linaro.org>2023-05-29 13:57:26 +0100
committerMuhammad Omair Javaid <omair.javaid@linaro.org>2023-05-29 17:39:36 +0400
commitab05d9134d18db34501985a01fbfc02609767587 (patch)
tree84cc3afd6ded07f7c75fb12efcf44d8417f9b634 /lldb/test/API/python_api
parentf2a866170c4961137608eee1c26f6eaa1e8e62a1 (diff)
downloadllvm-ab05d9134d18db34501985a01fbfc02609767587.zip
llvm-ab05d9134d18db34501985a01fbfc02609767587.tar.gz
llvm-ab05d9134d18db34501985a01fbfc02609767587.tar.bz2
Revert "[LLDB] Add/Remove xfail for some API tests on Windows"
This reverts commit 6ea1a0d4fc3823de143a288df2059b48dc01cf72. It again marks XFAIL LLDB tests failing after c384fcd3ea1dad782eaaea89b32fc33c0c3528b8
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/function_symbol/TestDisasmAPI.py1
-rw-r--r--lldb/test/API/python_api/function_symbol/TestSymbolAPI.py1
-rw-r--r--lldb/test/API/python_api/symbol-context/TestSymbolContext.py1
-rw-r--r--lldb/test/API/python_api/target/TestTargetAPI.py2
-rw-r--r--lldb/test/API/python_api/value/TestValueAPI.py1
5 files changed, 6 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py b/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
index 75b9082..572d76e 100644
--- a/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
+++ b/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
@@ -20,6 +20,7 @@ class DisasmAPITestCase(TestBase):
"main.c", "// Find the line number for breakpoint 2 here."
)
+ @expectedFailureAll(oslist=["windows"], bugnumber='llvm.org/pr21765')
def test(self):
"""Exercise getting SBAddress objects, disassembly, and SBAddress APIs."""
self.build()
diff --git a/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py b/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
index fb6073b..04c807b 100644
--- a/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
+++ b/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
@@ -20,6 +20,7 @@ class SymbolAPITestCase(TestBase):
"main.c", "// Find the line number for breakpoint 2 here."
)
+ @expectedFailureAll(oslist=["windows"], bugnumber='llvm.org/pr21765')
def test(self):
"""Exercise some SBSymbol and SBAddress APIs."""
self.build()
diff --git a/lldb/test/API/python_api/symbol-context/TestSymbolContext.py b/lldb/test/API/python_api/symbol-context/TestSymbolContext.py
index 7674d10..4c12577 100644
--- a/lldb/test/API/python_api/symbol-context/TestSymbolContext.py
+++ b/lldb/test/API/python_api/symbol-context/TestSymbolContext.py
@@ -17,6 +17,7 @@ class SymbolContextAPITestCase(TestBase):
"main.c", '// Find the line number of function "c" here.'
)
+ @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
def test(self):
"""Exercise SBSymbolContext API extensively."""
self.build()
diff --git a/lldb/test/API/python_api/target/TestTargetAPI.py b/lldb/test/API/python_api/target/TestTargetAPI.py
index c1fed81..c9e7e80 100644
--- a/lldb/test/API/python_api/target/TestTargetAPI.py
+++ b/lldb/test/API/python_api/target/TestTargetAPI.py
@@ -42,6 +42,7 @@ class TargetAPITestCase(TestBase):
self.setTearDownCleanup(dictionary=d)
self.find_compile_units(self.getBuildArtifact("b.out"))
+ @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
def test_find_functions(self):
"""Exercise SBTarget.FindFunctions() API."""
d = {"EXE": "b.out"}
@@ -54,6 +55,7 @@ class TargetAPITestCase(TestBase):
self.build()
self.get_description()
+ @expectedFailureAll(oslist=["windows"], bugnumber='llvm.org/pr21765')
def test_resolve_symbol_context_with_address(self):
"""Exercise SBTarget.ResolveSymbolContextForAddress() API."""
self.build()
diff --git a/lldb/test/API/python_api/value/TestValueAPI.py b/lldb/test/API/python_api/value/TestValueAPI.py
index 57139f7..dc68eb6 100644
--- a/lldb/test/API/python_api/value/TestValueAPI.py
+++ b/lldb/test/API/python_api/value/TestValueAPI.py
@@ -17,6 +17,7 @@ class ValueAPITestCase(TestBase):
# Find the line number to of function 'c'.
self.line = line_number("main.c", "// Break at this line")
+ @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24772")
def test(self):
"""Exercise some SBValue APIs."""
d = {"EXE": self.exe_name}