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_generated", | 39 ["pub", "sdk/lib/_internal/pub", "sdk/lib/_internal/pub/pub.status"], |
40 "sdk/lib/_internal/pub/pub.status"], | |
41 ["benchmark_smoke", "tests/benchmark_smoke", | 40 ["benchmark_smoke", "tests/benchmark_smoke", |
42 "tests/benchmark_smoke/benchmark_smoke.status"], | 41 "tests/benchmark_smoke/benchmark_smoke.status"], |
43 ["co19", "tests/co19/src", "tests/co19/co19-analyzer2.status"], | 42 ["co19", "tests/co19/src", "tests/co19/co19-analyzer2.status"], |
44 ["co19", "tests/co19/src", "tests/co19/co19-analyzer.status"], | 43 ["co19", "tests/co19/src", "tests/co19/co19-analyzer.status"], |
45 ["co19", "tests/co19/src", "tests/co19/co19-dart2dart.status"], | 44 ["co19", "tests/co19/src", "tests/co19/co19-dart2dart.status"], |
46 ["co19", "tests/co19/src", "tests/co19/co19-dart2js.status"], | 45 ["co19", "tests/co19/src", "tests/co19/co19-dart2js.status"], |
47 ["co19", "tests/co19/src", "tests/co19/co19-co19.status"], | 46 ["co19", "tests/co19/src", "tests/co19/co19-co19.status"], |
48 ["co19", "tests/co19/src", "tests/co19/co19-dartium.status"], | 47 ["co19", "tests/co19/src", "tests/co19/co19-dartium.status"], |
49 ["co19", "tests/co19/src", "tests/co19/co19-runtime.status"], | 48 ["co19", "tests/co19/src", "tests/co19/co19-runtime.status"], |
50 ]; | 49 ]; |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 ": $error"); | 408 ": $error"); |
410 return []; | 409 return []; |
411 } | 410 } |
412 }).catchError((error) { | 411 }).catchError((error) { |
413 print("Warning: Error occured while fetching testoutcomes: $error"
); | 412 print("Warning: Error occured while fetching testoutcomes: $error"
); |
414 return []; | 413 return []; |
415 }); | 414 }); |
416 }); | 415 }); |
417 } | 416 } |
418 } | 417 } |
OLD | NEW |