diff options
Diffstat (limited to 'lldb/test/python_api/value')
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/python_api/value/TestValueAPI.py b/lldb/test/python_api/value/TestValueAPI.py index 26813506cb3..d8776d506ae 100644 --- a/lldb/test/python_api/value/TestValueAPI.py +++ b/lldb/test/python_api/value/TestValueAPI.py @@ -24,7 +24,7 @@ class ValueAPITestCase(TestBase): self.line = line_number('main.c', '// Break at this line') @expectedFailureWindows("llvm.org/pr24772") - @python_api_test + @add_test_categories(['pyapi']) def test(self): """Exercise some SBValue APIs.""" d = {'EXE': self.exe_name} diff --git a/lldb/test/python_api/value/change_values/TestChangeValueAPI.py b/lldb/test/python_api/value/change_values/TestChangeValueAPI.py index 452cc63e704..1b461d2981e 100644 --- a/lldb/test/python_api/value/change_values/TestChangeValueAPI.py +++ b/lldb/test/python_api/value/change_values/TestChangeValueAPI.py @@ -26,7 +26,7 @@ class ChangeValueAPITestCase(TestBase): self.end_line = line_number ('main.c', '// Set a breakpoint here at the end') @expectedFailureWindows("llvm.org/pr24772") - @python_api_test + @add_test_categories(['pyapi']) def test_change_value(self): """Exercise the SBValue::SetValueFromCString API.""" d = {'EXE': self.exe_name} diff --git a/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py b/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py index 4c3a9b0da46..3ce749fcfcf 100644 --- a/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py +++ b/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py @@ -24,7 +24,7 @@ class ValueAsLinkedListTestCase(TestBase): # Find the line number to break at. self.line = line_number('main.cpp', '// Break at this line') - @python_api_test + @add_test_categories(['pyapi']) def test(self): """Exercise SBValue API linked_list_iter.""" d = {'EXE': self.exe_name} |