diff options
author | Chris Bieneman <beanz@apple.com> | 2016-10-27 22:52:32 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-10-27 22:52:32 +0000 |
commit | f817bae1616852aeae880aa8e6a22407276aa223 (patch) | |
tree | a11307e419851e4fddf18aff7ce1068091abaab8 /lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py | |
parent | 91967bd301cba2185b612b9b686cb7367383a00e (diff) | |
download | bcm5719-llvm-f817bae1616852aeae880aa8e6a22407276aa223.tar.gz bcm5719-llvm-f817bae1616852aeae880aa8e6a22407276aa223.zip |
[Test Suite] Pull generateSource into lldbtest
Summary:
Convert tests using LLDB headers to use generateSource to put the right include paths in place regardless of whether or not you're building a framework.
This also abstracted generateSource out of TestPublicAPIHeaders.py into lldbtest.py.
Reviewers: tfiala, zturner
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D25887
llvm-svn: 285357
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py b/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py index 970c25107f6..abd252b1e5b 100644 --- a/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py @@ -15,6 +15,15 @@ import subprocess class SBBreakpointCallbackCase(TestBase): + def setUp(self): + TestBase.setUp(self) + self.generateSource('driver.cpp') + self.generateSource('listener_test.cpp') + self.generateSource('test_breakpoint_callback.cpp') + self.generateSource('test_listener_event_description.cpp') + self.generateSource('test_listener_event_process_state.cpp') + self.generateSource('test_listener_resume.cpp') + mydir = TestBase.compute_mydir(__file__) @skipIfRemote |