| Index: tests/standalone/io/process_run_output_test.dart
|
| diff --git a/tests/standalone/src/io/ProcessRunOutputTest.dart b/tests/standalone/io/process_run_output_test.dart
|
| similarity index 90%
|
| rename from tests/standalone/src/io/ProcessRunOutputTest.dart
|
| rename to tests/standalone/io/process_run_output_test.dart
|
| index 1b32f452c1dd871e3d6e8c9fe5552f129d5693bd..5d78af29cbd3ebe9d0c1c9a86de775e0684c555f 100644
|
| --- a/tests/standalone/src/io/ProcessRunOutputTest.dart
|
| +++ b/tests/standalone/io/process_run_output_test.dart
|
| @@ -6,7 +6,7 @@
|
| // non-interactive processes started with Process.run.
|
|
|
| #import("dart:io");
|
| -#source("ProcessTestUtil.dart");
|
| +#source("process_test_util.dart");
|
|
|
| checkOutput(encoding, output) {
|
| if (encoding == 'ascii') {
|
| @@ -49,10 +49,10 @@ test(scriptFile, encoding, stream) {
|
| }
|
|
|
| main() {
|
| - var scriptFile = new File("tests/standalone/src/io/ProcessStdIOScript2.dart");
|
| + var scriptFile = new File("tests/standalone/io/process_std_io_script2.dart");
|
| if (!scriptFile.existsSync()) {
|
| scriptFile =
|
| - new File("../tests/standalone/src/io/ProcessStdIOScript2.dart");
|
| + new File("../tests/standalone/io/process_std_io_script2.dart");
|
| }
|
| Expect.isTrue(scriptFile.existsSync());
|
| test(scriptFile.name, 'ascii', 'stdout');
|
|
|