aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorMuhammad Omair Javaid <omair.javaid@linaro.org>2023-05-03 04:03:10 +0500
committerMuhammad Omair Javaid <omair.javaid@linaro.org>2023-05-03 04:45:55 +0500
commit6ea1a0d4fc3823de143a288df2059b48dc01cf72 (patch)
treea947e8f49181438a65d755ca3a387ceb49eb69c5 /lldb/test/API/python_api
parentd3c6c3f63c1276b4506d892fecadc0d155b35e2b (diff)
downloadllvm-6ea1a0d4fc3823de143a288df2059b48dc01cf72.zip
llvm-6ea1a0d4fc3823de143a288df2059b48dc01cf72.tar.gz
llvm-6ea1a0d4fc3823de143a288df2059b48dc01cf72.tar.bz2
[LLDB] Add/Remove xfail for some API tests on Windows
This patch add or removes XFAIL decorator from various tests which were marked xfail for windows. since 44363f2 various tests have started passing but introduced a couple of new failures. Weight is in favor of new XPasses and I have removed XFail decorator from them. Also some new tests have started failing for which we need to file separate bugs. I have marked them xfail for now and will add the bug id after investigating the issue. Differential Revision: https://reviews.llvm.org/D149235
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, 0 insertions, 6 deletions
diff --git a/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py b/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
index dbdbe75..1f1e4b1 100644
--- a/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
+++ b/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
@@ -19,7 +19,6 @@ class DisasmAPITestCase(TestBase):
self.line2 = line_number(
'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 14cc3ebe..2517f9b 100644
--- a/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
+++ b/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
@@ -19,7 +19,6 @@ class SymbolAPITestCase(TestBase):
self.line2 = line_number(
'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 8094845..3521bc3 100644
--- a/lldb/test/API/python_api/symbol-context/TestSymbolContext.py
+++ b/lldb/test/API/python_api/symbol-context/TestSymbolContext.py
@@ -17,7 +17,6 @@ class SymbolContextAPITestCase(TestBase):
self.line = line_number(
'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 15ac04cf..501a7cd 100644
--- a/lldb/test/API/python_api/target/TestTargetAPI.py
+++ b/lldb/test/API/python_api/target/TestTargetAPI.py
@@ -42,7 +42,6 @@ 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'}
@@ -55,7 +54,6 @@ 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 85d8b49..00d171f 100644
--- a/lldb/test/API/python_api/value/TestValueAPI.py
+++ b/lldb/test/API/python_api/value/TestValueAPI.py
@@ -18,7 +18,6 @@ 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}