aboutsummaryrefslogtreecommitdiff
path: root/test/lang/c
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2013-02-25 23:51:06 +0000
committerJim Ingham <jingham@apple.com>2013-02-25 23:51:06 +0000
commit60139f32db191a977a198ac07ee12e19d6d1071b (patch)
tree3568e1e830a7327a5e3a7cc8e45327241ffdc040 /test/lang/c
parent06bdbafae8ed420d0b9da4a059ef5765e48c7bc3 (diff)
downloadlldb-60139f32db191a977a198ac07ee12e19d6d1071b.tar.gz
Fix the .categories, it had "dataformatter" not "dataformatters".
Remove the getCategory from TestDataFormatterObjC.py, since it was superceded by the .categories file, and didn't work anyway (getCategories currently has to be a method on the test class, not on the test.) Add a "basic_process" category, and start to find some tests for simple process running sniff tests. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@176061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lang/c')
-rw-r--r--test/lang/c/stepping/TestStepAndBreakpoints.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lang/c/stepping/TestStepAndBreakpoints.py b/test/lang/c/stepping/TestStepAndBreakpoints.py
index 67472db4a..19aaef519 100644
--- a/test/lang/c/stepping/TestStepAndBreakpoints.py
+++ b/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