Backed out changeset 024d5d30566d (bug 1352351) for frequently failing resume-timer-on-history-back.html on Windows. r=backout a=backout

MozReview-Commit-ID: JSU0OCtbAOe
This commit is contained in:
Sebastian Hengst 2017-04-01 19:13:16 +02:00
Родитель 34da17ecef
Коммит 9115045faf
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -627,6 +627,7 @@ class PathGroupedSource(TestSource):
self.current_queue.put(item)
except Empty:
return None
return self.current_queue
def requeue_test(self, test):

Просмотреть файл

@ -499,10 +499,9 @@ class TestRunnerManager(threading.Thread):
return None, None
try:
# Need to block here just to allow for contention with other processes
test = test_queue.get(block=True, timeout=2)
test = test_queue.get(block=True, timeout=1)
except Empty:
if test_queue.empty():
test_queue = None
pass
return test, test_queue
def run_test(self):