[stem/master] Don't fail tests upon lingering thread

commit bba4069fdf70d422e4d6f4cbd8a50c0be6747732 Author: Damian Johnson <atagar@torproject.org> Date: Sat Aug 17 12:48:49 2013 -0700 Don't fail tests upon lingering thread The chief cause of our present jenkins failures are lingering threads... https://trac.torproject.org/projects/tor/ticket/8896 This is certainly an problem. It indicates either a bug with stem closing threads, or that we aren't closing a controller in the tests. However, I'm tired of the false alarms from the jenkins tests, besides which this is a very minor issue. --- run_tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index c209e1a..faa99f9 100755 --- a/run_tests.py +++ b/run_tests.py @@ -235,7 +235,6 @@ def main(): for lingering_thread in active_threads: println(" %s" % lingering_thread, ERROR) - error_tracker.register_error() break except KeyboardInterrupt: println(" aborted starting tor: keyboard interrupt\n", ERROR)
participants (1)
-
atagar@torproject.org