diff options
| author | Oleksiy Vyalov <ovyalov@google.com> | 2015-01-22 20:03:21 +0000 |
|---|---|---|
| committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-01-22 20:03:21 +0000 |
| commit | 49b71c609c0f8c008ac8d7ea9d9cce69858047b5 (patch) | |
| tree | c4278f93e1b924322a7df992a013e71f0f5a050f /lldb/test/api/multithreaded/TestMultithreaded.py | |
| parent | 753f7c306be17d9ad7d82ee586f80271d3b3687f (diff) | |
| download | bcm5719-llvm-49b71c609c0f8c008ac8d7ea9d9cce69858047b5.tar.gz bcm5719-llvm-49b71c609c0f8c008ac8d7ea9d9cce69858047b5.zip | |
Make OSX test run firewall friendly.
http://reviews.llvm.org/D7115
llvm-svn: 226856
Diffstat (limited to 'lldb/test/api/multithreaded/TestMultithreaded.py')
| -rw-r--r-- | lldb/test/api/multithreaded/TestMultithreaded.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/test/api/multithreaded/TestMultithreaded.py b/lldb/test/api/multithreaded/TestMultithreaded.py index a00e57408fe..4478a118ecc 100644 --- a/lldb/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/test/api/multithreaded/TestMultithreaded.py @@ -66,7 +66,9 @@ class SBBreakpointCallbackCase(TestBase): self.buildDriver(sources, test_name) self.addTearDownHook(lambda: os.remove(test_name)) - exe = [os.path.join(os.getcwd(), test_name), self.inferior] + test_exe = os.path.join(os.getcwd(), test_name) + self.signBinary(test_exe) + exe = [test_exe, self.inferior] env = {self.dylibPath : self.getLLDBLibraryEnvVal()} if self.TraceOn(): |

