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

Side by Side Diff: build/run_tests.py

Issue 800983002: Add test runner script for integration with the waterfall (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: explicit 0 exit Created 6 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright 2014 The Crashpad Authors. All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import os
18 import subprocess
19 import sys
20
21 script_dir = os.path.dirname(__file__)
22 crashpad_dir = os.path.dirname(script_dir) if script_dir is not '' else '..'
23
24
25 # This script is primarily used from the waterfall so that the list of tests
26 # that are run is maintained in-tree, rather than in a separate infrastructure
27 # location in the recipe.
28 def main(args):
29 if len(args) != 1:
30 print >>sys.stderr, 'usage: run_tests.py {Debug|Release}'
31 return 1;
32 binary_dir = os.path.join(crashpad_dir, 'out', args[0])
33 tests = [
34 'client_test',
35 'minidump_test',
36 'snapshot_test',
37 'util_test',
38 ]
39 for test in tests:
40 print '-' * 80
41 print test
42 print '-' * 80
43 subprocess.check_call(os.path.join(binary_dir, test))
44 return 0
45
46
47 if __name__ == '__main__':
48 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698