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

Unified Diff: tests/standalone/src/ProcessStderrTest.dart

Issue 8365032: Process tests work across platforms. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Process tests work across platforms. Created 9 years, 2 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/ProcessStderrTest.dart
diff --git a/tests/standalone/src/ProcessStderrTest.dart b/tests/standalone/src/ProcessStderrTest.dart
index 80dfc269b2b4da6a572d425ff8cda6169118f440..19fac1035a43f713749c6dc2784f05b9e7f8449c 100644
--- a/tests/standalone/src/ProcessStderrTest.dart
+++ b/tests/standalone/src/ProcessStderrTest.dart
@@ -9,10 +9,12 @@
// VMOptions=--short_socket_write
// VMOptions=--short_socket_read --short_socket_write
+#source("ProcessTestUtil.dart");
+
class ProcessStderrTest {
static void testExit() {
- Process process = new Process("out/Debug_ia32/process_test",
+ Process process = new Process(getProcessTestFileName(),
const ["1", "1", "99", "0"]);
final int BUFFERSIZE = 10;
final int STARTCHAR = 65;

Powered by Google App Engine
This is Rietveld 408576698