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

Unified Diff: build/run_tests.py

Issue 1396943002: win: stub of end-to-end test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@locks
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | snapshot/win/end_to_end_test.py » ('j') | 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
index bc387a12e13d04f777190f44876407d62f6ef6ea..9d8935ef67b59b20c57fddd578ec16a3b4398b93 100755
--- a/build/run_tests.py
+++ b/build/run_tests.py
@@ -57,6 +57,15 @@ def main(args):
print test
print '-' * 80
subprocess.check_call(os.path.join(binary_dir, test))
+
+ if sys.platform == 'win32':
+ name = 'snapshot/win/end_to_end_test.py'
+ print '-' * 80
+ print name
+ print '-' * 80
+ subprocess.check_call(
+ [sys.executable, os.path.join(crashpad_dir, name), args[0]])
+
return 0
« no previous file with comments | « no previous file | snapshot/win/end_to_end_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698