| 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
|
|
|
|
|
|
|