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 multiHtmlTestGroupRegExp, multiTestRegExp, multiHtmlTestRegExp, | 13 show multiHtmlTestGroupRegExp, multiTestRegExp, multiHtmlTestRegExp, |
14 TestUtils; | 14 TestUtils; |
15 import "testing/dart/utils.dart" show Path; | 15 import "testing/dart/utils.dart" show Path; |
16 | 16 |
17 // [STATUS_TUPLES] is a list of (suite-name, directory, status-file)-tuples. | 17 // [STATUS_TUPLES] is a list of (suite-name, directory, status-file)-tuples. |
18 final STATUS_TUPLES = [ | 18 final STATUS_TUPLES = [ |
19 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], | 19 ["corelib", "tests/corelib", "tests/corelib/corelib.status"], |
20 ["html", "tests/html", "tests/html/html.status"], | 20 ["html", "tests/html", "tests/html/html.status"], |
21 ["isolate", "tests/isolate", "tests/isolate/isolate.status"], | 21 ["isolate", "tests/isolate", "tests/isolate/isolate.status"], |
22 ["json", "tests/json", "tests/json/json.status"], | |
23 ["language", "tests/language", "tests/language/language.status"], | 22 ["language", "tests/language", "tests/language/language.status"], |
24 ["language", "tests/language", "tests/language/language_analyzer2.status"], | 23 ["language", "tests/language", "tests/language/language_analyzer2.status"], |
25 ["language","tests/language", "tests/language/language_analyzer.status"], | 24 ["language","tests/language", "tests/language/language_analyzer.status"], |
26 ["language","tests/language", "tests/language/language_dart2js.status"], | 25 ["language","tests/language", "tests/language/language_dart2js.status"], |
27 ["lib", "tests/lib", "tests/lib/lib.status"], | 26 ["lib", "tests/lib", "tests/lib/lib.status"], |
28 ["standalone", "tests/standalone", "tests/standalone/standalone.status"], | 27 ["standalone", "tests/standalone", "tests/standalone/standalone.status"], |
29 ["pkg", "pkg", "pkg/pkg.status"], | 28 ["pkg", "pkg", "pkg/pkg.status"], |
30 ["pkgbuild", ".", "pkg/pkgbuild.status"], | 29 ["pkgbuild", ".", "pkg/pkgbuild.status"], |
31 ["utils", "tests/utils", "tests/utils/utils.status"], | 30 ["utils", "tests/utils", "tests/utils/utils.status"], |
32 ["samples", "samples", "samples/samples.status"], | 31 ["samples", "samples", "samples/samples.status"], |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 ": $error"); | 407 ": $error"); |
409 return []; | 408 return []; |
410 } | 409 } |
411 }).catchError((error) { | 410 }).catchError((error) { |
412 print("Warning: Error occured while fetching testoutcomes: $error"
); | 411 print("Warning: Error occured while fetching testoutcomes: $error"
); |
413 return []; | 412 return []; |
414 }); | 413 }); |
415 }); | 414 }); |
416 } | 415 } |
417 } | 416 } |
OLD | NEW |