GN: Fix builder test script

Review URL: https://codereview.chromium.org/2423783002 .
This commit is contained in:
Zachary Anderson 2016-10-16 15:18:54 -07:00
parent caa0167457
commit c1b1151f54

View file

@ -15,7 +15,8 @@ DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..', '..'))
def main(argv):
test_py = os.path.join(DART_ROOT, 'tools', 'test.py')
build_result = subprocess.call(['python', test_py] + argv[1:])
build_result = subprocess.call(
['python', test_py] + ['--builder-tag=no_ipv6'] + argv[1:])
if build_result != 0:
return build_result
return 0