Home | History | Annotate | Download | only in testrunner

Lines Matching refs:threading

58 import threading
91 test_count_mutex = threading.Lock()
99 semaphore = threading.Semaphore(1)
103 print_mutex = threading.Lock()
255 semaphore = threading.Semaphore(n_thread)
383 while threading.active_count() > 2:
514 worker = threading.Thread(target=run_test, args=(command, test, variant_set, test_name))
526 while threading.active_count() > 2:
1019 test_runner_thread = threading.Thread(target=run_tests, args=(user_requested_tests,))
1021 test_runner_thread = threading.Thread(target=run_tests, args=(RUN_TEST_SET,))
1030 while threading.active_count() > 1 and not stop_testrunner: