| Index: tests/standalone/src/ProcessExitNegativeTest.dart
|
| diff --git a/tests/standalone/src/ProcessExitNegativeTest.dart b/tests/standalone/src/ProcessExitNegativeTest.dart
|
| index 2209f82832447717dd56d8fdaf64d00846922189..236d175579a5b328fb0720bb4c4693b7148afb87 100644
|
| --- a/tests/standalone/src/ProcessExitNegativeTest.dart
|
| +++ b/tests/standalone/src/ProcessExitNegativeTest.dart
|
| @@ -5,11 +5,13 @@
|
| // Process test program to test that compilation errors in the process
|
| // exit handler is reported correctly.
|
|
|
| +#source("ProcessTestUtil.dart");
|
| +
|
| void main() {
|
| - Process p = new Process("true", []);
|
| + Process p = new Process.start(getProcessTestFileName(),
|
| + const ["0", "0", "0", "0"]);
|
| p.exitHandler = (int s) {
|
| print(a.toString()); // Should cause a compilation error here.
|
| p.close();
|
| };
|
| - p.start();
|
| }
|
|
|