| Index: tests/standalone/io/process_check_arguments_test.dart
|
| diff --git a/tests/standalone/src/io/ProcessCheckArgumentsTest.dart b/tests/standalone/io/process_check_arguments_test.dart
|
| similarity index 84%
|
| rename from tests/standalone/src/io/ProcessCheckArgumentsTest.dart
|
| rename to tests/standalone/io/process_check_arguments_test.dart
|
| index 5cbb710a2fcb1ff25c982253271877b9252609a0..4f1c0a676df5cbaf334dfe27e7dc966976fd3e54 100644
|
| --- a/tests/standalone/src/io/ProcessCheckArgumentsTest.dart
|
| +++ b/tests/standalone/io/process_check_arguments_test.dart
|
| @@ -3,7 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| #import("dart:io");
|
| -#source("ProcessTestUtil.dart");
|
| +#source("process_test_util.dart");
|
|
|
| test(args) {
|
| Process process = new Process.start(getDartFileName(), args);
|
| @@ -17,10 +17,10 @@ test(args) {
|
| main() {
|
| // Get the Dart script file which checks arguments.
|
| var scriptFile =
|
| - new File("tests/standalone/src/io/ProcessCheckArgumentsScript.dart");
|
| + new File("tests/standalone/io/process_check_arguments_script.dart");
|
| if (!scriptFile.existsSync()) {
|
| scriptFile =
|
| - new File("../tests/standalone/src/io/ProcessCheckArgumentsScript.dart");
|
| + new File("../tests/standalone/io/process_check_arguments_script.dart");
|
| }
|
| test([scriptFile.name, '3', '0', 'a']);
|
| test([scriptFile.name, '3', '0', 'a b']);
|
|
|