| Index: tests/standalone/io/process_stdout_test.dart
|
| diff --git a/tests/standalone/src/io/ProcessStdoutTest.dart b/tests/standalone/io/process_stdout_test.dart
|
| similarity index 91%
|
| rename from tests/standalone/src/io/ProcessStdoutTest.dart
|
| rename to tests/standalone/io/process_stdout_test.dart
|
| index 80e2c2df9d3c6cbf681644aa26b8803bd115f96d..7fac576b4f3f5a0052d3efd9351bcde7f7b5c30a 100644
|
| --- a/tests/standalone/src/io/ProcessStdoutTest.dart
|
| +++ b/tests/standalone/io/process_stdout_test.dart
|
| @@ -10,7 +10,7 @@
|
| // VMOptions=--short_socket_read --short_socket_write
|
|
|
| #import("dart:io");
|
| -#source("ProcessTestUtil.dart");
|
| +#source("process_test_util.dart");
|
|
|
| void test(Process process, int expectedExitCode) {
|
| // Wait for the process to start and then interact with it.
|
| @@ -62,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/io/ProcessStdIOScript.dart");
|
| + var scriptFile = new File("tests/standalone/io/process_std_io_script.dart");
|
| if (!scriptFile.existsSync()) {
|
| - scriptFile = new File("../tests/standalone/src/io/ProcessStdIOScript.dart");
|
| + scriptFile = new File("../tests/standalone/io/process_std_io_script.dart");
|
| }
|
| Expect.isTrue(scriptFile.existsSync());
|
| test(new Process.start(getDartFileName(), [scriptFile.name, "0"]), 0);
|
|
|