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

Unified Diff: build/run_tests.py

Issue 1126783004: Introduce RegistrationServer. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: One extra comment. Created 5 years, 7 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 | client/client.gyp » ('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 1f4a089a32ecb7e141c6655ad65169539a4b88e3..9075cdf167351cd27f82466b4169b4223b70ef4f 100755
--- a/build/run_tests.py
+++ b/build/run_tests.py
@@ -15,6 +15,7 @@
# limitations under the License.
import os
+import platform
import subprocess
import sys
@@ -50,6 +51,10 @@ def main(args):
'crashpad_test_test',
'crashpad_util_test',
]
+ if platform.system() == 'Windows':
+ tests += [
+ 'crashpad_handler_test',
+ ]
for test in tests:
print '-' * 80
print test
« no previous file with comments | « no previous file | client/client.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698