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

Side by Side Diff: tools/testing/dart/test_runner.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_progress.dart ('k') | tools/testing/dart/test_suite.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) 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_runner"); 5 #library("test_runner");
6 6
7 #import("dart:io");
7 #import("status_file_parser.dart"); 8 #import("status_file_parser.dart");
8 #import("test_progress.dart"); 9 #import("test_progress.dart");
9 #import("test_suite.dart"); 10 #import("test_suite.dart");
10 11
11 /** 12 /**
12 * Classes and methods for executing tests. 13 * Classes and methods for executing tests.
13 * 14 *
14 * This module includes: 15 * This module includes:
15 * - Managing parallel execution of tests, including timeout checks. 16 * - Managing parallel execution of tests, including timeout checks.
16 * - Evaluating the output of each test as pass/fail/crash/timeout. 17 * - Evaluating the output of each test as pass/fail/crash/timeout.
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 test.displayName != 'dartc/junit_tests') { 550 test.displayName != 'dartc/junit_tests') {
550 _ensureDartcBatchRunnersStarted(test.executablePath); 551 _ensureDartcBatchRunnersStarted(test.executablePath);
551 _getDartcBatchRunnerProcess().startTest(test); 552 _getDartcBatchRunnerProcess().startTest(test);
552 } else { 553 } else {
553 new RunningProcess(test).start(); 554 new RunningProcess(test).start();
554 } 555 }
555 _numProcesses++; 556 _numProcesses++;
556 } 557 }
557 } 558 }
558 } 559 }
OLDNEW
« no previous file with comments | « tools/testing/dart/test_progress.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698