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 |