| Index: tools/test-wrapper-gypbuild.py
|
| diff --git a/tools/test-wrapper-gypbuild.py b/tools/test-wrapper-gypbuild.py
|
| index 9bc6bf6ac7eef1fb3be5f1eae8e9c67b8daa6733..ad5449a4046862d8c3ae2910eeded766857e9739 100755
|
| --- a/tools/test-wrapper-gypbuild.py
|
| +++ b/tools/test-wrapper-gypbuild.py
|
| @@ -53,6 +53,9 @@ def BuildOptions():
|
| result.add_option("--outdir",
|
| help='Base output directory',
|
| default='out')
|
| + result.add_option("--no-presubmit",
|
| + help='Skip presubmit checks',
|
| + default=False, action="store_true")
|
|
|
| # Flags this wrapper script handles itself:
|
| result.add_option("-m", "--mode",
|
| @@ -202,22 +205,31 @@ def Main():
|
| return 1
|
|
|
| workspace = abspath(join(dirname(sys.argv[0]), '..'))
|
| +
|
| + if not options.no_presubmit:
|
| + print ">>> running presubmit tests"
|
| + subprocess.call([workspace + '/tools/presubmit.py'])
|
| +
|
| args_for_children = [workspace + '/tools/test.py'] + PassOnOptions(options)
|
| args_for_children += ['--no-build', '--build-system=gyp']
|
| for arg in args:
|
| args_for_children += [arg]
|
| returncodes = 0
|
| + env = os.environ
|
|
|
| for mode in options.mode:
|
| for arch in options.arch:
|
| print ">>> running tests for %s.%s" % (arch, mode)
|
| - shell = workspace + '/' + options.outdir + '/' + arch + '.' + mode + "/d8"
|
| + shellpath = workspace + '/' + options.outdir + '/' + arch + '.' + mode
|
| + env['LD_LIBRARY_PATH'] = shellpath + '/lib.target'
|
| + shell = shellpath + "/d8"
|
| child = subprocess.Popen(' '.join(args_for_children +
|
| ['--arch=' + arch] +
|
| ['--mode=' + mode] +
|
| ['--shell=' + shell]),
|
| shell=True,
|
| - cwd=workspace)
|
| + cwd=workspace,
|
| + env=env)
|
| returncodes += child.wait()
|
|
|
| return returncodes
|
|
|