| Index: tests/standalone/io/dart_std_io_pipe_test.dart
|
| diff --git a/tests/standalone/src/io/DartStdIOPipeTest.dart b/tests/standalone/io/dart_std_io_pipe_test.dart
|
| similarity index 89%
|
| rename from tests/standalone/src/io/DartStdIOPipeTest.dart
|
| rename to tests/standalone/io/dart_std_io_pipe_test.dart
|
| index 71a5f9aaf7664fc205cf78bae44a29182e05004b..807eb069a4cde80ed0e068d1ac325ad2615b7a21 100644
|
| --- a/tests/standalone/src/io/DartStdIOPipeTest.dart
|
| +++ b/tests/standalone/io/dart_std_io_pipe_test.dart
|
| @@ -11,7 +11,7 @@
|
| // VMOptions=--short_socket_read --short_socket_write
|
|
|
| #import("dart:io");
|
| -#source("ProcessTestUtil.dart");
|
| +#source("process_test_util.dart");
|
|
|
| void checkFileEmpty(String fileName) {
|
| RandomAccessFile pipeOut = new File(fileName).openSync();
|
| @@ -84,14 +84,14 @@ main() {
|
|
|
| // Get the shell script for testing the Standalone Dart VM with
|
| // piping and redirections of stdio.
|
| - var shellScript = new File("tests/standalone/src/io/DartStdIOPipeTest.sh");
|
| + var shellScript = new File("tests/standalone/io/dart_std_io_pipe_test.sh");
|
| if (!shellScript.existsSync()) {
|
| - shellScript = new File("../tests/standalone/src/io/DartStdIOPipeTest.sh");
|
| + shellScript = new File("../tests/standalone/io/dart_std_io_pipe_test.sh");
|
| }
|
| // Get the Dart script file which echoes stdin to stdout or stderr or both.
|
| - 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");
|
| }
|
|
|
| // Run the shell script.
|
|
|