OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // | 4 // |
5 // Process test program to test process communication. | 5 // Process test program to test process communication. |
6 | 6 |
7 library ProcessSegfaultTest; | 7 library ProcessSegfaultTest; |
| 8 |
8 import "package:expect/expect.dart"; | 9 import "package:expect/expect.dart"; |
9 import "dart:io"; | 10 import "dart:io"; |
10 import "process_test_util.dart"; | 11 import "process_test_util.dart"; |
11 | 12 |
12 testExit() { | 13 testExit() { |
13 var future = Process.start(getProcessTestFileName(), | 14 var future = |
14 const ["0", "0", "1", "1"]); | 15 Process.start(getProcessTestFileName(), const ["0", "0", "1", "1"]); |
15 future.then((process) { | 16 future.then((process) { |
16 process.exitCode.then((int exitCode) { | 17 process.exitCode.then((int exitCode) { |
17 Expect.isTrue(exitCode != 0); | 18 Expect.isTrue(exitCode != 0); |
18 }); | 19 }); |
19 process.stdout.listen((_) {}); | 20 process.stdout.listen((_) {}); |
20 process.stderr.listen((_) {}); | 21 process.stderr.listen((_) {}); |
21 }); | 22 }); |
22 } | 23 } |
23 | 24 |
24 | |
25 testExitRun() { | 25 testExitRun() { |
26 Process.run(getProcessTestFileName(), | 26 Process |
27 const ["0", "0", "1", "1"]).then((result) { | 27 .run(getProcessTestFileName(), const ["0", "0", "1", "1"]).then((result) { |
28 Expect.isTrue(result.exitCode != 0); | 28 Expect.isTrue(result.exitCode != 0); |
29 Expect.equals(result.stdout, ''); | 29 Expect.equals(result.stdout, ''); |
30 Expect.equals(result.stderr, ''); | 30 Expect.equals(result.stderr, ''); |
31 }); | 31 }); |
32 } | 32 } |
33 | 33 |
34 | |
35 main() { | 34 main() { |
36 testExit(); | 35 testExit(); |
37 testExitRun(); | 36 testExitRun(); |
38 } | 37 } |
OLD | NEW |