diff options
| author | Tatyana Krasnukha <tatyana@synopsys.com> | 2021-02-04 01:02:31 +0300 |
|---|---|---|
| committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2021-02-08 15:10:48 +0300 |
| commit | 05d7d6949c7cd3f1566d4c8394fa59160a7ffd05 (patch) | |
| tree | 7bcea3bbf63b43121fd01844974bb10afc467cd8 /lldb/test/API/python_api/sbdata | |
| parent | f9c5e1664e081031e7deec3df49953952771d21b (diff) | |
| download | llvm-05d7d6949c7cd3f1566d4c8394fa59160a7ffd05.zip llvm-05d7d6949c7cd3f1566d4c8394fa59160a7ffd05.tar.gz llvm-05d7d6949c7cd3f1566d4c8394fa59160a7ffd05.tar.bz2 | |
[lldb/tests] Removed add_test_categories decorator for python API tests, NFC
There is a .categories file in the python_api directory that makes all nested tests
belong to the category "pyapi". The decorator is unnecessary for these tests.
Diffstat (limited to 'lldb/test/API/python_api/sbdata')
| -rw-r--r-- | lldb/test/API/python_api/sbdata/TestSBData.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/test/API/python_api/sbdata/TestSBData.py b/lldb/test/API/python_api/sbdata/TestSBData.py index 283908f..258ce51 100644 --- a/lldb/test/API/python_api/sbdata/TestSBData.py +++ b/lldb/test/API/python_api/sbdata/TestSBData.py @@ -20,7 +20,6 @@ class SBDataAPICase(TestBase): # Find the line number to break on inside main.cpp. self.line = line_number('main.cpp', '// set breakpoint here') - @add_test_categories(['pyapi']) @skipIfReproducer # SBData::SetData is not instrumented. def test_byte_order_and_address_byte_size(self): """Test the SBData::SetData() to ensure the byte order and address @@ -41,7 +40,6 @@ class SBDataAPICase(TestBase): addr = data.GetAddress(error, 0) self.assertEqual(addr, 0x8877665544332211); - @add_test_categories(['pyapi']) @skipIfReproducer # SBData::SetData is not instrumented. def test_with_run_command(self): """Test the SBData APIs.""" |
