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