| 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 11 matching lines...) Expand all Loading... |
| 22 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], | 22 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], |
| 23 ["html", "tests/html", "tests/html/html.status"], | 23 ["html", "tests/html", "tests/html/html.status"], |
| 24 ["isolate", "tests/isolate", "tests/isolate/isolate.status"], | 24 ["isolate", "tests/isolate", "tests/isolate/isolate.status"], |
| 25 ["language", "tests/language", "tests/language/language.status"], | 25 ["language", "tests/language", "tests/language/language.status"], |
| 26 ["language", "tests/language", "tests/language/language_analyzer2.status"], | 26 ["language", "tests/language", "tests/language/language_analyzer2.status"], |
| 27 ["language", "tests/language", "tests/language/language_analyzer.status"], | 27 ["language", "tests/language", "tests/language/language_analyzer.status"], |
| 28 ["language", "tests/language", "tests/language/language_dart2js.status"], | 28 ["language", "tests/language", "tests/language/language_dart2js.status"], |
| 29 ["lib", "tests/lib", "tests/lib/lib.status"], | 29 ["lib", "tests/lib", "tests/lib/lib.status"], |
| 30 ["standalone", "tests/standalone", "tests/standalone/standalone.status"], | 30 ["standalone", "tests/standalone", "tests/standalone/standalone.status"], |
| 31 ["pkg", "pkg", "pkg/pkg.status"], | 31 ["pkg", "pkg", "pkg/pkg.status"], |
| 32 ["pkgbuild", ".", "pkg/pkgbuild.status"], | |
| 33 ["utils", "tests/utils", "tests/utils/utils.status"], | 32 ["utils", "tests/utils", "tests/utils/utils.status"], |
| 34 ["samples", "samples", "samples/samples.status"], | 33 ["samples", "samples", "samples/samples.status"], |
| 35 ["analyze_library", "sdk", "tests/lib/analyzer/analyze_library.status"], | 34 ["analyze_library", "sdk", "tests/lib/analyzer/analyze_library.status"], |
| 36 [ | 35 [ |
| 37 "dart2js_extra", | 36 "dart2js_extra", |
| 38 "tests/compiler/dart2js_extra", | 37 "tests/compiler/dart2js_extra", |
| 39 "tests/compiler/dart2js_extra/dart2js_extra.status" | 38 "tests/compiler/dart2js_extra/dart2js_extra.status" |
| 40 ], | 39 ], |
| 41 [ | 40 [ |
| 42 "dart2js_native", | 41 "dart2js_native", |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ": $error"); | 423 ": $error"); |
| 425 return []; | 424 return []; |
| 426 } | 425 } |
| 427 }).catchError((error) { | 426 }).catchError((error) { |
| 428 print("Warning: Error occured while fetching testoutcomes: $error"); | 427 print("Warning: Error occured while fetching testoutcomes: $error"); |
| 429 return []; | 428 return []; |
| 430 }); | 429 }); |
| 431 }); | 430 }); |
| 432 } | 431 } |
| 433 } | 432 } |
| OLD | NEW |