Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: tools/status_clean.dart

Issue 841193003: cleanup to tools/testing/dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one last bit Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/standalone/status_expression_test.dart ('k') | tools/test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tests/standalone/status_expression_test.dart ('k') | tools/test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698