| Index: tests/standalone/src/io/ProcessStdoutTest.dart
|
| diff --git a/tests/standalone/src/ProcessStdoutTest.dart b/tests/standalone/src/io/ProcessStdoutTest.dart
|
| similarity index 91%
|
| rename from tests/standalone/src/ProcessStdoutTest.dart
|
| rename to tests/standalone/src/io/ProcessStdoutTest.dart
|
| index a49ed6e0122ee84513c5b8ec6e0b5246fd85fdd1..80e2c2df9d3c6cbf681644aa26b8803bd115f96d 100644
|
| --- a/tests/standalone/src/ProcessStdoutTest.dart
|
| +++ b/tests/standalone/src/io/ProcessStdoutTest.dart
|
| @@ -9,7 +9,6 @@
|
| // VMOptions=--short_socket_write
|
| // VMOptions=--short_socket_read --short_socket_write
|
|
|
| -#library("ProcessStdoutTest");
|
| #import("dart:io");
|
| #source("ProcessTestUtil.dart");
|
|
|
| @@ -63,9 +62,9 @@ main() {
|
|
|
| // Run the test using the dart binary with an echo script.
|
| // The test runner can be run from either the root or from runtime.
|
| - var scriptFile = new File("tests/standalone/src/ProcessStdIOScript.dart");
|
| + var scriptFile = new File("tests/standalone/src/io/ProcessStdIOScript.dart");
|
| if (!scriptFile.existsSync()) {
|
| - scriptFile = new File("../tests/standalone/src/ProcessStdIOScript.dart");
|
| + scriptFile = new File("../tests/standalone/src/io/ProcessStdIOScript.dart");
|
| }
|
| Expect.isTrue(scriptFile.existsSync());
|
| test(new Process.start(getDartFileName(), [scriptFile.name, "0"]), 0);
|
|
|