diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 4 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/test_result.py | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index b9222dde7c9..94781050dc4 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -133,10 +133,6 @@ rerun_max_file_threhold = 0 # same base name. all_tests = set() -# safe default -setCrashInfoHook = lambda x: None - - def shouldSkipBecauseOfCategories(test_categories): if useCategories: if len(test_categories) == 0 or len( diff --git a/lldb/packages/Python/lldbsuite/test/test_result.py b/lldb/packages/Python/lldbsuite/test/test_result.py index 3e3460b49c5..e5bac0cc4aa 100644 --- a/lldb/packages/Python/lldbsuite/test/test_result.py +++ b/lldb/packages/Python/lldbsuite/test/test_result.py @@ -166,10 +166,6 @@ class LLDBTestResult(unittest2.TextTestResult): configuration.skip_tests, test.id()): self.hardMarkAsSkipped(test) - configuration.setCrashInfoHook( - "%s at %s" % - (str(test), inspect.getfile( - test.__class__))) self.counter += 1 test.test_number = self.counter if self.showAll: |