mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 23:41:02 +08:00
Fix path to binary dir in cdb test
Oops, was passing the out dir (...\crashpad\out), not the binary dir (...\crashpad\out\Debug). Didn't notice because I was running the script directly, rather than via run_tests.py. :/ R=mark@chromium.org BUG=crashpad:46 Review URL: https://codereview.chromium.org/1394343005 .
This commit is contained in:
parent
52238122e9
commit
d7ee79cb36
@ -64,7 +64,7 @@ def main(args):
|
|||||||
print name
|
print name
|
||||||
print '-' * 80
|
print '-' * 80
|
||||||
subprocess.check_call(
|
subprocess.check_call(
|
||||||
[sys.executable, os.path.join(crashpad_dir, name), out_dir])
|
[sys.executable, os.path.join(crashpad_dir, name), binary_dir])
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
@ -187,7 +187,7 @@ def RunTests(cdb_path, dump_path, pipe_name):
|
|||||||
def main(args):
|
def main(args):
|
||||||
try:
|
try:
|
||||||
if len(args) != 1:
|
if len(args) != 1:
|
||||||
print >>sys.stderr, 'must supply out dir'
|
print >>sys.stderr, 'must supply binary dir'
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
cdb_path = GetCdbPath()
|
cdb_path = GetCdbPath()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user