diff options
4 files changed, 6 insertions, 6 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index e5e2fdf4bbe..4e1ce6d163d 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -79,7 +79,8 @@ validCategories = { 'dataformatters':'Tests related to the type command and the data formatters subsystem', 'expression':'Tests related to the expression parser', 'objc':'Tests related to the Objective-C programming language support', -'pyapi':'Tests related to the Python API' +'pyapi':'Tests related to the Python API', +'basic_process': 'Basic process execution sniff tests.' } # The test suite. diff --git a/lldb/test/functionalities/data-formatter/data-formatter-objc/.categories b/lldb/test/functionalities/data-formatter/data-formatter-objc/.categories index 77b5ffcad61..6326dbcec91 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-objc/.categories +++ b/lldb/test/functionalities/data-formatter/data-formatter-objc/.categories @@ -1 +1 @@ -dataformatter,objc +dataformatters,objc diff --git a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py index 6f550438d51..3e30f2a5ede 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py @@ -90,8 +90,6 @@ class ObjCDataFormatterTestCase(TestBase): """Test common cases of expression parser <--> formatters interaction.""" self.buildDsym() self.expr_objc_data_formatter_commands() - def getCategories(self): - return ['dataformatters','expression','objc'] @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @dwarf_test @@ -99,8 +97,6 @@ class ObjCDataFormatterTestCase(TestBase): """Test common cases of expression parser <--> formatters interaction.""" self.buildDwarf() self.expr_objc_data_formatter_commands() - def getCategories(self): - return ['dataformatters','expression','objc'] def setUp(self): # Call super's setUp(). diff --git a/lldb/test/lang/c/stepping/TestStepAndBreakpoints.py b/lldb/test/lang/c/stepping/TestStepAndBreakpoints.py index 67472db4a28..19aaef519b9 100644 --- a/lldb/test/lang/c/stepping/TestStepAndBreakpoints.py +++ b/lldb/test/lang/c/stepping/TestStepAndBreakpoints.py @@ -10,6 +10,9 @@ class TestObjCStepping(TestBase): mydir = os.path.join("lang", "c", "stepping") + def getCategories(self): + return ['basic_process'] + @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @python_api_test @dsym_test |