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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/run_tests.py
diff --git a/build/run_tests.py b/build/run_tests.py
new file mode 100755
index 0000000000000000000000000000000000000000..5f3e971d2dbae16e30650b9438bac6b7b59554a6
--- /dev/null
+++ b/build/run_tests.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+
+# Copyright 2014 The Crashpad Authors. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import os
+import subprocess
+import sys
+
+script_dir = os.path.dirname(__file__)
+crashpad_dir = os.path.dirname(script_dir) if script_dir is not '' else '..'
+
+
+# This script is primarily used from the waterfall so that the list of tests
+# that are run is maintained in-tree, rather than in a separate infrastructure
+# location in the recipe.
+def main(args):
+ if len(args) != 1:
+ print >>sys.stderr, 'usage: run_tests.py {Debug|Release}'
+ return 1;
+ binary_dir = os.path.join(crashpad_dir, 'out', args[0])
+ tests = [
+ 'client_test',
+ 'minidump_test',
+ 'snapshot_test',
+ 'util_test',
+ ]
+ for test in tests:
+ print '-' * 80
+ print test
+ print '-' * 80
+ subprocess.check_call(os.path.join(binary_dir, test))
+ return 0
+
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv[1:]))
« 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