| Index: tests/standalone/src/io/DartStdIOPipeTest.dart
|
| diff --git a/tests/standalone/src/DartStdIOPipeTest.dart b/tests/standalone/src/io/DartStdIOPipeTest.dart
|
| similarity index 90%
|
| rename from tests/standalone/src/DartStdIOPipeTest.dart
|
| rename to tests/standalone/src/io/DartStdIOPipeTest.dart
|
| index 54ed37d27abe5816cda6ce07bb112adc62f5dc08..988ca28b3b0b6a06de50d7ee0a596b5a65e0b231 100644
|
| --- a/tests/standalone/src/DartStdIOPipeTest.dart
|
| +++ b/tests/standalone/src/io/DartStdIOPipeTest.dart
|
| @@ -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/DartStdIOPipeTest.sh");
|
| + var shellScript = new File("tests/standalone/src/io/DartStdIOPipeTest.sh");
|
| if (!shellScript.existsSync()) {
|
| - shellScript = new File("../tests/standalone/src/DartStdIOPipeTest.sh");
|
| + shellScript = new File("../tests/standalone/src/io/DartStdIOPipeTest.sh");
|
| }
|
| // Get the Dart script file which echoes stdin to stdout or stderr or both.
|
| - 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");
|
| }
|
|
|
| // Run the shell script.
|
|
|