OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # |
| 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 |
| 5 # BSD-style license that can be found in the LICENSE file. |
| 6 |
| 7 import os |
| 8 import os.path |
| 9 import shutil |
| 10 import sys |
| 11 import subprocess |
| 12 |
| 13 import bot |
| 14 import bot_utils |
| 15 |
| 16 utils = bot_utils.GetUtils() |
| 17 |
| 18 BUILD_OS = utils.GuessOS() |
| 19 |
| 20 (bot_name, _) = bot.GetBotName() |
| 21 CHANNEL = bot_utils.GetChannelFromName(bot_name) |
| 22 |
| 23 if __name__ == '__main__': |
| 24 print "This step should test the sdk that was built using gn" |
| 25 print "Current directory when running on a bot should be" |
| 26 print "/b/build/slave/[builder name]/build/sdk" |
| 27 |
OLD | NEW |