| Index: tests/standalone/src/io/ProcessExitNegativeTest.dart
|
| diff --git a/tests/standalone/src/io/ProcessExitNegativeTest.dart b/tests/standalone/src/io/ProcessExitNegativeTest.dart
|
| deleted file mode 100644
|
| index cbcd8c01b1b88eac275b303abd37f8b98062230c..0000000000000000000000000000000000000000
|
| --- a/tests/standalone/src/io/ProcessExitNegativeTest.dart
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -//
|
| -// 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"]);
|
| - p.onExit = (int s) {
|
| - print(a.toString()); // Should cause a compilation error here.
|
| - p.close();
|
| - };
|
| -}
|
|
|