OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 | 2 |
3 # Copyright (c) 2014, the Fletch project authors. Please see the AUTHORS file | 3 # Copyright (c) 2014, the Dartino 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 """ | 7 """ |
8 Buildbot steps for fletch testing | 8 Buildbot steps for fletch testing |
9 """ | 9 """ |
10 | 10 |
11 import glob | 11 import glob |
12 import os | 12 import os |
13 import re | 13 import re |
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
983 print '@@@STEP_FAILURE@@@' | 983 print '@@@STEP_FAILURE@@@' |
984 else: | 984 else: |
985 print '@@@STEP_WARNINGS@@@' | 985 print '@@@STEP_WARNINGS@@@' |
986 sys.stdout.flush() | 986 sys.stdout.flush() |
987 | 987 |
988 if __name__ == '__main__': | 988 if __name__ == '__main__': |
989 # If main raises an exception we will get a very useful error message with | 989 # If main raises an exception we will get a very useful error message with |
990 # traceback written to stderr. We therefore intentionally do not catch | 990 # traceback written to stderr. We therefore intentionally do not catch |
991 # exceptions. | 991 # exceptions. |
992 Main() | 992 Main() |
OLD | NEW |