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

Side by Side Diff: scripts/slave/recipes/gatekeeper.py

Issue 23889036: Refactor the way that TestApi works so that it is actually useful. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 7 years, 3 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 """Specifies how to launch the gatekeeper.""" 5 """Specifies how to launch the gatekeeper."""
6 6
7 DEPS = [ 7 DEPS = [
8 'path', 8 'path',
9 'step', 9 'step',
10 ] 10 ]
11 11
12 def GenSteps(api): 12 def GenSteps(api):
13 yield api.step('gatekeeper_launch', 13 yield api.step('gatekeeper_launch',
14 [api.path.build('scripts', 'slave', 'gatekeeper_launch.py')]) 14 [api.path.build('scripts', 'slave', 'gatekeeper_launch.py')])
15 15
16 def GenTests(_api): 16 def GenTests(api):
17 yield 'basic', {} 17 yield api.Test('basic')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698