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"; |
11 import "testing/dart/status_file_parser.dart"; | 11 import "testing/dart/status_file_parser.dart"; |
12 import "testing/dart/test_suite.dart" | 12 import "testing/dart/test_suite.dart" |
13 show | 13 show |
14 multiHtmlTestGroupRegExp, | 14 multiHtmlTestGroupRegExp, |
15 multiTestRegExp, | 15 multiTestRegExp, |
16 multiHtmlTestRegExp, | 16 multiHtmlTestRegExp, |
17 TestUtils; | 17 TestUtils; |
18 import "testing/dart/utils.dart" show Path; | 18 import "testing/dart/utils.dart" show Path; |
19 | 19 |
20 // [STATUS_TUPLES] is a list of (suite-name, directory, status-file)-tuples. | 20 // [STATUS_TUPLES] is a list of (suite-name, directory, status-file)-tuples. |
21 final STATUS_TUPLES = [ | 21 final STATUS_TUPLES = [ |
22 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], | 22 ["corelib_2", "tests/corelib_2", "tests/corelib_2/corelib_2.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 ["utils", "tests/utils", "tests/utils/utils.status"], | 32 ["utils", "tests/utils", "tests/utils/utils.status"], |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 ": $error"); | 423 ": $error"); |
424 return []; | 424 return []; |
425 } | 425 } |
426 }).catchError((error) { | 426 }).catchError((error) { |
427 print("Warning: Error occured while fetching testoutcomes: $error"); | 427 print("Warning: Error occured while fetching testoutcomes: $error"); |
428 return []; | 428 return []; |
429 }); | 429 }); |
430 }); | 430 }); |
431 } | 431 } |
432 } | 432 } |
OLD | NEW |