| Index: tests/standalone/io/process_stderr_test.dart
|
| diff --git a/tests/standalone/src/io/ProcessStderrTest.dart b/tests/standalone/io/process_stderr_test.dart
|
| similarity index 91%
|
| rename from tests/standalone/src/io/ProcessStderrTest.dart
|
| rename to tests/standalone/io/process_stderr_test.dart
|
| index f8e8b0a3862c7a9add75d79730618b322089c0ee..6181c1cc82cecf6f16ad1839d209bf22b0b5a636 100644
|
| --- a/tests/standalone/src/io/ProcessStderrTest.dart
|
| +++ b/tests/standalone/io/process_stderr_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, "1"]), 0);
|
|
|