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 18 matching lines...) Expand all Loading... |
29 ["pkgbuild", ".", "pkg/pkgbuild.status"], | 29 ["pkgbuild", ".", "pkg/pkgbuild.status"], |
30 ["utils", "tests/utils", "tests/utils/utils.status"], | 30 ["utils", "tests/utils", "tests/utils/utils.status"], |
31 ["samples", "samples", "samples/samples.status"], | 31 ["samples", "samples", "samples/samples.status"], |
32 ["analyze_library", "sdk", "tests/lib/analyzer/analyze_library.status"], | 32 ["analyze_library", "sdk", "tests/lib/analyzer/analyze_library.status"], |
33 ["dart2js_extra", "tests/compiler/dart2js_extra", | 33 ["dart2js_extra", "tests/compiler/dart2js_extra", |
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"], | |
40 ["benchmark_smoke", "tests/benchmark_smoke", | 39 ["benchmark_smoke", "tests/benchmark_smoke", |
41 "tests/benchmark_smoke/benchmark_smoke.status"], | 40 "tests/benchmark_smoke/benchmark_smoke.status"], |
42 ["co19", "tests/co19/src", "tests/co19/co19-analyzer2.status"], | 41 ["co19", "tests/co19/src", "tests/co19/co19-analyzer2.status"], |
43 ["co19", "tests/co19/src", "tests/co19/co19-analyzer.status"], | 42 ["co19", "tests/co19/src", "tests/co19/co19-analyzer.status"], |
44 ["co19", "tests/co19/src", "tests/co19/co19-dart2js.status"], | 43 ["co19", "tests/co19/src", "tests/co19/co19-dart2js.status"], |
45 ["co19", "tests/co19/src", "tests/co19/co19-co19.status"], | 44 ["co19", "tests/co19/src", "tests/co19/co19-co19.status"], |
46 ["co19", "tests/co19/src", "tests/co19/co19-dartium.status"], | 45 ["co19", "tests/co19/src", "tests/co19/co19-dartium.status"], |
47 ["co19", "tests/co19/src", "tests/co19/co19-runtime.status"], | 46 ["co19", "tests/co19/src", "tests/co19/co19-runtime.status"], |
48 ]; | 47 ]; |
49 | 48 |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 ": $error"); | 406 ": $error"); |
408 return []; | 407 return []; |
409 } | 408 } |
410 }).catchError((error) { | 409 }).catchError((error) { |
411 print("Warning: Error occured while fetching testoutcomes: $error"
); | 410 print("Warning: Error occured while fetching testoutcomes: $error"
); |
412 return []; | 411 return []; |
413 }); | 412 }); |
414 }); | 413 }); |
415 } | 414 } |
416 } | 415 } |
OLD | NEW |