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

Unified Diff: tests/standalone/src/io/TestRunnerTest.dart

Issue 10078011: Fix flaky standalone/io/TestRunnerTest, a unit test of the testing framework. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/TestRunnerTest.dart
diff --git a/tests/standalone/src/io/TestRunnerTest.dart b/tests/standalone/src/io/TestRunnerTest.dart
index c4eff2c5b95bdf0a9236aa653e247a26108d126b..03efd7c203e8c9e2c75f1a4d29e652f91d7df86c 100644
--- a/tests/standalone/src/io/TestRunnerTest.dart
+++ b/tests/standalone/src/io/TestRunnerTest.dart
@@ -43,7 +43,8 @@ TestCase MakeTestCase(String testName, List<String> expectations) {
}
var configuration = { 'timeout': 2,
- 'special-command': '' };
+ 'special-command': '',
+ 'verbose': false };
return new TestCase(testName,
[new Command(getDartFileName(),
<String>["--ignore-unrecognized-flags",
@@ -56,12 +57,13 @@ TestCase MakeTestCase(String testName, List<String> expectations) {
void main() {
- var configuration = { 'timeout': 2,
- 'special-command': '' };
new RunningProcess(MakeTestCase("PassTest", [PASS])).start();
new RunningProcess(MakeTestCase("FailTest", [FAIL])).start();
new RunningProcess(MakeTestCase("TimeoutTest", [TIMEOUT])).start();
+ var configuration = { 'timeout': 10,
Mads Ager (google) 2012/04/19 10:15:12 I wonder if we can invoke the options parser to ge
+ 'special-command': '',
+ 'verbose': false };
new RunningProcess(new TestCase("CrashTest",
[new Command(getProcessTestFileName(),
const ["0", "0", "1", "1"])],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698