mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 07:14:10 +08:00
39f13a77a4
This is co-dependent with https://chromium-review.googlesource.com/457736. I’ve been trying to share a source tree between different platforms, using gyp_crashpad.py --generator-output to put the build output in the right place. On Windows, it winds up in out\win\out\{Debug,Release}{,_x64}. This makes it tricky to use run_tests.py, which expects to find build output right in the “out” directory. It’s not impossible to use, because you can tell it “win\out\Debug_x64”, but it’s really awkward to use that path when we all know that it’s not relative to anything that makes sense, like the current directory. This simplifies run_tests.py to work directly with the configuration-specific output directory. For most users, this means including “out/” or “out\” when running the script. Bug: chromium:703890 Change-Id: Ic7de82fabd2adda7ae00558844cb3ce91aa4a5ed Reviewed-on: https://chromium-review.googlesource.com/457716 Commit-Queue: Mark Mentovai <mark@chromium.org> Reviewed-by: Scott Graham <scottmg@chromium.org>
60 lines
1.6 KiB
Python
Executable File
60 lines
1.6 KiB
Python
Executable File
#!/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
|
|
|
|
|
|
# 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 <binary_dir>'
|
|
return 1
|
|
|
|
crashpad_dir = \
|
|
os.path.join(os.path.dirname(os.path.abspath(__file__)), os.pardir)
|
|
binary_dir = args[0]
|
|
|
|
tests = [
|
|
'crashpad_client_test',
|
|
'crashpad_minidump_test',
|
|
'crashpad_snapshot_test',
|
|
'crashpad_test_test',
|
|
'crashpad_util_test',
|
|
]
|
|
for test in tests:
|
|
print '-' * 80
|
|
print test
|
|
print '-' * 80
|
|
subprocess.check_call(os.path.join(binary_dir, test))
|
|
|
|
if sys.platform == 'win32':
|
|
script = 'snapshot/win/end_to_end_test.py'
|
|
print '-' * 80
|
|
print script
|
|
print '-' * 80
|
|
subprocess.check_call(
|
|
[sys.executable, os.path.join(crashpad_dir, script), binary_dir])
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|