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

Unified Diff: tests/dart/src/ProcessStdoutTest.dart

Issue 8249007: Implement the full process interface for Windows (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: 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
« bin/process_win.cc ('K') | « tests/dart/src/ProcessStderrTest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/dart/src/ProcessStdoutTest.dart
===================================================================
--- tests/dart/src/ProcessStdoutTest.dart (revision 380)
+++ tests/dart/src/ProcessStdoutTest.dart (working copy)
@@ -7,7 +7,7 @@
class ProcessStdoutTest {
static void testExit() {
- Process process = new Process("out/Debug_ia32//process_test",
+ Process process = new Process("Debug_ia32\\process_test.exe",
const ["0", "1", "99", "0"]);
final int BUFFERSIZE = 10;
final int STARTCHAR = 65;
@@ -28,7 +28,7 @@
print("data written");
void readData() {
print("data read");
- for (int i = 0; i < BUFFERSIZE; i++) {
+ for (int i = 0; i < BUFFERSIZE - 1; i++) {
Expect.equals(buffer[i], readBuffer[i]);
}
process.close();
« bin/process_win.cc ('K') | « tests/dart/src/ProcessStderrTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698