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

Side by Side Diff: tools/testing/dart/test_suite.dart

Issue 9254026: Split dart:builtin into dart:builtin and dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment and add binaries. Created 8 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 | « tools/testing/dart/test_runner.dart ('k') | no next file » | 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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("test_suite"); 5 #library("test_suite");
6 6
7 #import("dart:io");
7 #import("status_file_parser.dart"); 8 #import("status_file_parser.dart");
8 #import("test_runner.dart"); 9 #import("test_runner.dart");
9 #import("multitest.dart"); 10 #import("multitest.dart");
10 11
11 #source("browser_test.dart"); 12 #source("browser_test.dart");
12 13
13 interface TestSuite { 14 interface TestSuite {
14 void forEachTest(Function onTest, Map testCache, String globalTempDir(), 15 void forEachTest(Function onTest, Map testCache, String globalTempDir(),
15 [Function onDone]); 16 [Function onDone]);
16 } 17 }
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 * $noCrash tests are expected to be flaky but not crash 1049 * $noCrash tests are expected to be flaky but not crash
1049 * $pass tests are expected to pass 1050 * $pass tests are expected to pass
1050 * $failOk tests are expected to fail that we won't fix 1051 * $failOk tests are expected to fail that we won't fix
1051 * $fail tests are expected to fail that we should fix 1052 * $fail tests are expected to fail that we should fix
1052 * $crash tests are expected to crash that we should fix 1053 * $crash tests are expected to crash that we should fix
1053 * $timeout tests are allowed to timeout 1054 * $timeout tests are allowed to timeout
1054 """; 1055 """;
1055 print(report); 1056 print(report);
1056 } 1057 }
1057 } 1058 }
OLDNEW
« no previous file with comments | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698