Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: tools/bots/gn_tests.py

Issue 2895973002: Remove old annotated_steps buildbot scripts and dispatcher (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/bots/gn_build.py ('k') | tools/bots/packages.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/gn_tests.py
diff --git a/tools/bots/gn_tests.py b/tools/bots/gn_tests.py
deleted file mode 100755
index 2c4b42810626471bb5623ef5520ea49c54b5b29c..0000000000000000000000000000000000000000
--- a/tools/bots/gn_tests.py
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-import os
-import os.path
-import shutil
-import sys
-import subprocess
-
-SCRIPT_DIR = os.path.dirname(sys.argv[0])
-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, '--builder-tag=no_ipv6']
- + argv[1:])
- if build_result != 0:
- return build_result
- build_result = subprocess.call(
- ['python', test_py, '--builder-tag=no_ipv6',
- '-cdart2js', '-rd8', '--use-sdk', 'language/first']
- + argv[1:])
- if build_result != 0:
- return build_result
- build_result = subprocess.call(
- ['python', test_py, '--builder-tag=no_ipv6',
- '-cdart2analyzer', '-rnone', '--use-sdk', 'language/first']
- + argv[1:])
- if build_result != 0:
- return build_result
- return 0
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv))
« no previous file with comments | « tools/bots/gn_build.py ('k') | tools/bots/packages.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698