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

Side by Side Diff: tests/standalone/io/test_runner_exit_code_script.dart

Issue 11369216: Added support for skipping redundant dart2js compilations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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) 2012, 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 // Simulates a use of test_progress during a failing run of test.dart. 5 // Simulates a use of test_progress during a failing run of test.dart.
6 6
7 #import("../../../tools/testing/dart/test_progress.dart"); 7 #import("../../../tools/testing/dart/test_progress.dart");
8 #import("../../../tools/testing/dart/test_runner.dart"); 8 #import("../../../tools/testing/dart/test_runner.dart");
9 #import("../../../tools/testing/dart/test_options.dart"); 9 #import("../../../tools/testing/dart/test_options.dart");
10 10
(...skipping 13 matching lines...) Expand all
24 [dummyCommand], 24 [dummyCommand],
25 configuration, 25 configuration,
26 (_) => null, 26 (_) => null,
27 new Set<String>.from(['PASS'])); 27 new Set<String>.from(['PASS']));
28 28
29 // Simulate the test.dart use of the progress indicator. 29 // Simulate the test.dart use of the progress indicator.
30 progress.testAdded(); 30 progress.testAdded();
31 progress.allTestsKnown(); 31 progress.allTestsKnown();
32 progress.start(testCase); 32 progress.start(testCase);
33 new CommandOutput.fromCase(testCase, dummyCommand, 1, false, false, [], [], 33 new CommandOutput.fromCase(testCase, dummyCommand, 1, false, false, [], [],
34 new Date.now().difference(startTime)); 34 new Date.now().difference(startTime), false);
35 progress.done(testCase); 35 progress.done(testCase);
36 progress.allDone(); 36 progress.allDone();
37 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698