| 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/lib/multitest.dart"; |
| 11 import "testing/dart/status_file_parser.dart"; | 11 import "testing/dart/lib/path.dart"; |
| 12 import "testing/dart/lib/status_file_parser.dart"; |
| 13 import 'testing/dart/lib/test_utils.dart'; |
| 12 import "testing/dart/test_suite.dart" | 14 import "testing/dart/test_suite.dart" |
| 13 show multiHtmlTestGroupRegExp, multiTestRegExp, multiHtmlTestRegExp, | 15 show multiHtmlTestGroupRegExp, multiTestRegExp, multiHtmlTestRegExp, |
| 14 TestUtils; | 16 TestUtils; |
| 15 import "testing/dart/utils.dart" show Path; | |
| 16 | 17 |
| 17 // [STATUS_TUPLES] is a list of (suite-name, directory, status-file)-tuples. | 18 // [STATUS_TUPLES] is a list of (suite-name, directory, status-file)-tuples. |
| 18 final STATUS_TUPLES = [ | 19 final STATUS_TUPLES = [ |
| 19 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], | 20 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], |
| 20 ["html", "tests/html", "tests/html/html.status"], | 21 ["html", "tests/html", "tests/html/html.status"], |
| 21 ["isolate", "tests/isolate", "tests/isolate/isolate.status"], | 22 ["isolate", "tests/isolate", "tests/isolate/isolate.status"], |
| 22 ["language", "tests/language", "tests/language/language.status"], | 23 ["language", "tests/language", "tests/language/language.status"], |
| 23 ["language", "tests/language", "tests/language/language_analyzer2.status"], | 24 ["language", "tests/language", "tests/language/language_analyzer2.status"], |
| 24 ["language","tests/language", "tests/language/language_analyzer.status"], | 25 ["language","tests/language", "tests/language/language_analyzer.status"], |
| 25 ["language","tests/language", "tests/language/language_dart2js.status"], | 26 ["language","tests/language", "tests/language/language_dart2js.status"], |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 ": $error"); | 410 ": $error"); |
| 410 return []; | 411 return []; |
| 411 } | 412 } |
| 412 }).catchError((error) { | 413 }).catchError((error) { |
| 413 print("Warning: Error occured while fetching testoutcomes: $error"
); | 414 print("Warning: Error occured while fetching testoutcomes: $error"
); |
| 414 return []; | 415 return []; |
| 415 }); | 416 }); |
| 416 }); | 417 }); |
| 417 } | 418 } |
| 418 } | 419 } |
| OLD | NEW |