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

Unified Diff: tools/bots/gn_tests.py

Issue 2610943002: Remove 'pkg' from the default list of test suites (Closed)
Patch Set: Created 3 years, 11 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
Index: tools/bots/gn_tests.py
diff --git a/tools/bots/gn_tests.py b/tools/bots/gn_tests.py
index 1f44d69d1ef4fd4285a585eff89927664ec128e6..2c4b42810626471bb5623ef5520ea49c54b5b29c 100755
--- a/tools/bots/gn_tests.py
+++ b/tools/bots/gn_tests.py
@@ -16,7 +16,7 @@ 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', '--exclude-suite=pkg']
+ ['python', test_py, '--builder-tag=no_ipv6']
+ argv[1:])
if build_result != 0:
return build_result

Powered by Google App Engine
This is Rietveld 408576698