| Index: sdk/lib/_internal/pub/test/run/forwards_signal_windows_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/run/forwards_signal_windows_test.dart b/sdk/lib/_internal/pub/test/run/forwards_signal_windows_test.dart
|
| index cc01bc0810839985904da1918ef06bb3f1150cf2..0927fc19d679db8fd8ed1e286625e5cb1325e82e 100644
|
| --- a/sdk/lib/_internal/pub/test/run/forwards_signal_windows_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/run/forwards_signal_windows_test.dart
|
| @@ -12,7 +12,6 @@ import 'dart:io';
|
|
|
| main() {
|
| ProcessSignal.SIGHUP.watch().listen(print);
|
| - ProcessSignal.SIGINT.watch().listen(print);
|
|
|
| print("ready");
|
| }
|
| @@ -31,10 +30,8 @@ main() {
|
| var pub = pubRun(args: ["bin/script"]);
|
|
|
| pub.stdout.expect("ready");
|
| - for (var signal in [ProcessSignal.SIGHUP, ProcessSignal.SIGINT]) {
|
| - pub.signal(signal);
|
| - pub.stdout.expect(signal.toString());
|
| - }
|
| + pub.signal(Process.SIGINT);
|
| + pub.stdout.expect("SIGINT");
|
|
|
| pub.kill();
|
| });
|
|
|