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

Unified Diff: tools/bots/gn_tests.py

Issue 2412163002: GN: Add commands to bot scripts (Closed)
Patch Set: Created 4 years, 2 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/gn.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
index 7d551cea25b8c83c341268c22d01796529b212ef..479d7df7715ce036da38b0ab45ca990eefc75117 100644
--- a/tools/bots/gn_tests.py
+++ b/tools/bots/gn_tests.py
@@ -10,18 +10,15 @@ import shutil
import sys
import subprocess
-import bot
-import bot_utils
+SCRIPT_DIR = os.path.dirname(sys.argv[0])
+DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..', '..'))
-utils = bot_utils.GetUtils()
-
-BUILD_OS = utils.GuessOS()
-
-(bot_name, _) = bot.GetBotName()
-CHANNEL = bot_utils.GetChannelFromName(bot_name)
+def main(argv):
+ test_py = os.path.join(DART_ROOT, 'tools', 'test.py')
+ build_result = subprocess.call(['python', test_py] + argv[1:])
+ if build_result != 0:
+ return build_result
+ return 0
if __name__ == '__main__':
- print "This step should test the sdk that was built using gn"
- print "Current directory when running on a bot should be"
- print "/b/build/slave/[builder name]/build/sdk"
-
+ sys.exit(main(sys.argv))
« no previous file with comments | « tools/bots/gn_build.py ('k') | tools/gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698