diff options
author | Pavel Labath <labath@google.com> | 2015-12-08 13:32:07 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-12-08 13:32:07 +0000 |
commit | 9cbf7dde882f32618021db5d745ec09b98661cbc (patch) | |
tree | 944477a7e505d85a1dd58b4aa56083089580aaab /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 5e4248b4e01c4b8c5aa72629eb4212aa23c1a857 (diff) | |
download | bcm5719-llvm-9cbf7dde882f32618021db5d745ec09b98661cbc.tar.gz bcm5719-llvm-9cbf7dde882f32618021db5d745ec09b98661cbc.zip |
Fixup dotest.py on mac for the configuration package
llvm-svn: 255013
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 3218c7380cf..2bcd421ca79 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -27,7 +27,7 @@ def __setCrashInfoHook_Mac(text): from . import crashinfo crashinfo.setCrashReporterDescription(text) -def __setupCrashInfoHook(): +def setupCrashInfoHook(): if platform.system() == "Darwin": from . import lock test_dir = os.environ['LLDB_TEST'] @@ -48,7 +48,7 @@ def __setupCrashInfoHook(): compile_lock.release() del compile_lock - setCrashInfoHook = setCrashInfoHook_Mac + setCrashInfoHook = __setCrashInfoHook_Mac else: pass @@ -220,7 +220,6 @@ all_tests = set() # safe default setCrashInfoHook = lambda x : None -__setupCrashInfoHook() def shouldSkipBecauseOfCategories(test_categories): if useCategories: |