Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: third_party/recipe_engine/expect_tests/pipeline.py

Issue 1151423002: Move recipe engine to third_party/recipe_engine. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved field_composer_test with its buddies Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import Queue 5 import Queue
6 import glob 6 import glob
7 import logging 7 import logging
8 import multiprocessing 8 import multiprocessing
9 import re 9 import re
10 import signal 10 import signal
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 except ResultStageAbort: 239 except ResultStageAbort:
240 pass 240 pass
241 241
242 for p in procs: 242 for p in procs:
243 p.join() 243 p.join()
244 244
245 if not kill_switch.is_set() and not result_queue.empty(): 245 if not kill_switch.is_set() and not result_queue.empty():
246 error = True 246 error = True
247 247
248 return error, kill_switch.is_set() 248 return error, kill_switch.is_set()
OLDNEW
« no previous file with comments | « third_party/recipe_engine/expect_tests/main.py ('k') | third_party/recipe_engine/expect_tests/serialize.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698