OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
5 # BSD-style license that can be found in the LICENSE file. | 5 # BSD-style license that can be found in the LICENSE file. |
6 | 6 |
7 import os | 7 import os |
8 import os.path | 8 import os.path |
9 import shutil | 9 import shutil |
10 import sys | 10 import sys |
11 import subprocess | 11 import subprocess |
12 | 12 |
13 SCRIPT_DIR = os.path.dirname(sys.argv[0]) | 13 SCRIPT_DIR = os.path.dirname(sys.argv[0]) |
14 DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..', '..')) | 14 DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..', '..')) |
15 | 15 |
16 def main(argv): | 16 def main(argv): |
17 test_py = os.path.join(DART_ROOT, 'tools', 'test.py') | 17 test_py = os.path.join(DART_ROOT, 'tools', 'test.py') |
18 build_result = subprocess.call( | 18 build_result = subprocess.call( |
19 ['python', test_py] + ['--builder-tag=no_ipv6'] + argv[1:]) | 19 ['python', test_py, '--builder-tag=no_ipv6', '--exclude-suite=pkg'] |
| 20 + argv[1:]) |
20 if build_result != 0: | 21 if build_result != 0: |
21 return build_result | 22 return build_result |
22 return 0 | 23 return 0 |
23 | 24 |
24 if __name__ == '__main__': | 25 if __name__ == '__main__': |
25 sys.exit(main(sys.argv)) | 26 sys.exit(main(sys.argv)) |
OLD | NEW |