| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'buildbot_structures.dart'; | 6 import 'buildbot_structures.dart'; |
| 7 import 'logdog.dart' as logdog; | 7 import 'logdog.dart' as logdog; |
| 8 import 'util.dart'; | 8 import 'util.dart'; |
| 9 | 9 |
| 10 /// Data describing the steps of the buildbots. | 10 /// Data describing the steps of the buildbots. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'vm tests', | 90 'vm tests', |
| 91 'checked vm tests', | 91 'checked vm tests', |
| 92 ]), | 92 ]), |
| 93 const BuildSubgroup(shardNames: const <String>[ | 93 const BuildSubgroup(shardNames: const <String>[ |
| 94 'vm-win-release-ia32-be', | 94 'vm-win-release-ia32-be', |
| 95 ], testSteps: const <String>[ | 95 ], testSteps: const <String>[ |
| 96 'vm tests', | 96 'vm tests', |
| 97 'checked vm tests', | 97 'checked vm tests', |
| 98 ]), | 98 ]), |
| 99 const BuildSubgroup(shardNames: const <String>[ | 99 const BuildSubgroup(shardNames: const <String>[ |
| 100 'vm-linux-debug-simmips-be', | |
| 101 ], testSteps: const <String>[ | |
| 102 'vm tests', | |
| 103 'checked vm tests', | |
| 104 ]), | |
| 105 const BuildSubgroup(shardNames: const <String>[ | |
| 106 'vm-linux-release-simmips-be', | |
| 107 ], testSteps: const <String>[ | |
| 108 'vm tests', | |
| 109 'checked vm tests', | |
| 110 ]), | |
| 111 const BuildSubgroup(shardNames: const <String>[ | |
| 112 'vm-linux-debug-simarm-be', | 100 'vm-linux-debug-simarm-be', |
| 113 ], testSteps: const <String>[ | 101 ], testSteps: const <String>[ |
| 114 'vm tests', | 102 'vm tests', |
| 115 'checked vm tests', | 103 'checked vm tests', |
| 116 ]), | 104 ]), |
| 117 const BuildSubgroup(shardNames: const <String>[ | 105 const BuildSubgroup(shardNames: const <String>[ |
| 118 'vm-linux-release-simarm-be', | 106 'vm-linux-release-simarm-be', |
| 119 ], testSteps: const <String>[ | 107 ], testSteps: const <String>[ |
| 120 'vm tests', | 108 'vm tests', |
| 121 'checked vm tests', | 109 'checked vm tests', |
| (...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 947 stepNames.add(step); | 935 stepNames.add(step); |
| 948 } | 936 } |
| 949 } | 937 } |
| 950 if (stepNames.isNotEmpty) { | 938 if (stepNames.isNotEmpty) { |
| 951 subgroups[subgroup] = stepNames; | 939 subgroups[subgroup] = stepNames; |
| 952 } | 940 } |
| 953 } | 941 } |
| 954 } | 942 } |
| 955 return subgroups; | 943 return subgroups; |
| 956 } | 944 } |
| OLD | NEW |