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

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: Fix copyrights 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 * $noCrash tests are expected to be flaky but not crash 1037 * $noCrash tests are expected to be flaky but not crash
1037 * $pass tests are expected to pass 1038 * $pass tests are expected to pass
1038 * $failOk tests are expected to fail that we won't fix 1039 * $failOk tests are expected to fail that we won't fix
1039 * $fail tests are expected to fail that we should fix 1040 * $fail tests are expected to fail that we should fix
1040 * $crash tests are expected to crash that we should fix 1041 * $crash tests are expected to crash that we should fix
1041 * $timeout tests are allowed to timeout 1042 * $timeout tests are allowed to timeout
1042 """; 1043 """;
1043 print(report); 1044 print(report);
1044 } 1045 }
1045 } 1046 }
OLDNEW
« tests/standalone/src/SocketStreamCloseTest.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698