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

Unified Diff: tests/standalone/src/ProcessBrokenPipeTest.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: 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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/src/ProcessBrokenPipeTest.dart
diff --git a/tests/standalone/src/ProcessBrokenPipe.dart b/tests/standalone/src/ProcessBrokenPipeTest.dart
similarity index 87%
rename from tests/standalone/src/ProcessBrokenPipe.dart
rename to tests/standalone/src/ProcessBrokenPipeTest.dart
index 942972b8a1debb70be5d32e840576260c8d2b08e..d32e538eee732782d075969b32243c268a5e9e9b 100644
--- a/tests/standalone/src/ProcessBrokenPipe.dart
+++ b/tests/standalone/src/ProcessBrokenPipeTest.dart
@@ -4,11 +4,13 @@
//
// Process test program to test closed stdin from child process.
+#import('dart:io');
+
#source("ProcessTestUtil.dart");
main() {
// Running dart without arguments makes it close right away.
- Process process = new Process.start(getDartBinFileName(), []);
+ Process process = new Process.start(getDartFileName(), []);
// Write to the stdin after the process is terminated to test
// writing to a broken pipe.

Powered by Google App Engine
This is Rietveld 408576698