OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library status_clean; | 5 library status_clean; |
6 | 6 |
7 import "dart:async"; | 7 import "dart:async"; |
8 import "dart:convert" show JSON, UTF8; | 8 import "dart:convert" show JSON, UTF8; |
9 import "dart:io"; | 9 import "dart:io"; |
10 import "testing/dart/multitest.dart"; | 10 import "testing/dart/multitest.dart"; |
(...skipping 23 matching lines...) Expand all Loading... |
34 "tests/compiler/dart2js_extra/dart2js_extra.status"], | 34 "tests/compiler/dart2js_extra/dart2js_extra.status"], |
35 ["dart2js_native", "tests/compiler/dart2js_native", | 35 ["dart2js_native", "tests/compiler/dart2js_native", |
36 "tests/compiler/dart2js_native/dart2js_native.status"], | 36 "tests/compiler/dart2js_native/dart2js_native.status"], |
37 ["dart2js", "tests/compiler/dart2js", | 37 ["dart2js", "tests/compiler/dart2js", |
38 "tests/compiler/dart2js/dart2js.status"], | 38 "tests/compiler/dart2js/dart2js.status"], |
39 ["pub", "sdk/lib/_internal/pub", "sdk/lib/_internal/pub/pub.status"], | 39 ["pub", "sdk/lib/_internal/pub", "sdk/lib/_internal/pub/pub.status"], |
40 ["benchmark_smoke", "tests/benchmark_smoke", | 40 ["benchmark_smoke", "tests/benchmark_smoke", |
41 "tests/benchmark_smoke/benchmark_smoke.status"], | 41 "tests/benchmark_smoke/benchmark_smoke.status"], |
42 ["co19", "tests/co19/src", "tests/co19/co19-analyzer2.status"], | 42 ["co19", "tests/co19/src", "tests/co19/co19-analyzer2.status"], |
43 ["co19", "tests/co19/src", "tests/co19/co19-analyzer.status"], | 43 ["co19", "tests/co19/src", "tests/co19/co19-analyzer.status"], |
44 ["co19", "tests/co19/src", "tests/co19/co19-dart2dart.status"], | |
45 ["co19", "tests/co19/src", "tests/co19/co19-dart2js.status"], | 44 ["co19", "tests/co19/src", "tests/co19/co19-dart2js.status"], |
46 ["co19", "tests/co19/src", "tests/co19/co19-co19.status"], | 45 ["co19", "tests/co19/src", "tests/co19/co19-co19.status"], |
47 ["co19", "tests/co19/src", "tests/co19/co19-dartium.status"], | 46 ["co19", "tests/co19/src", "tests/co19/co19-dartium.status"], |
48 ["co19", "tests/co19/src", "tests/co19/co19-runtime.status"], | 47 ["co19", "tests/co19/src", "tests/co19/co19-runtime.status"], |
49 ]; | 48 ]; |
50 | 49 |
51 void main(List<String> args) { | 50 void main(List<String> args) { |
52 TestUtils.setDartDirUri(Platform.script.resolve('..')); | 51 TestUtils.setDartDirUri(Platform.script.resolve('..')); |
53 usage() { | 52 usage() { |
54 print("Usage: ${Platform.executable} <deflake|remove-nonexistent-tests>"); | 53 print("Usage: ${Platform.executable} <deflake|remove-nonexistent-tests>"); |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 ": $error"); | 407 ": $error"); |
409 return []; | 408 return []; |
410 } | 409 } |
411 }).catchError((error) { | 410 }).catchError((error) { |
412 print("Warning: Error occured while fetching testoutcomes: $error"
); | 411 print("Warning: Error occured while fetching testoutcomes: $error"
); |
413 return []; | 412 return []; |
414 }); | 413 }); |
415 }); | 414 }); |
416 } | 415 } |
417 } | 416 } |
OLD | NEW |