| Index: sdk/lib/_internal/pub/test/run/forwards_signal_posix_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/run/forwards_signal_posix_test.dart b/sdk/lib/_internal/pub/test/run/forwards_signal_posix_test.dart
|
| index a259291e4b623e04655ff066408742a74d73e7e3..ccfbe580e7a298164fda46dc692f6c184e8d5dab 100644
|
| --- a/sdk/lib/_internal/pub/test/run/forwards_signal_posix_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/run/forwards_signal_posix_test.dart
|
| @@ -9,7 +9,6 @@ import '../test_pub.dart';
|
|
|
| const _catchableSignals = const [
|
| ProcessSignal.SIGHUP,
|
| - ProcessSignal.SIGINT,
|
| ProcessSignal.SIGTERM,
|
| ProcessSignal.SIGUSR1,
|
| ProcessSignal.SIGUSR2,
|
| @@ -21,7 +20,6 @@ import 'dart:io';
|
|
|
| main() {
|
| ProcessSignal.SIGHUP.watch().listen(print);
|
| - ProcessSignal.SIGINT.watch().listen(print);
|
| ProcessSignal.SIGTERM.watch().listen(print);
|
| ProcessSignal.SIGUSR1.watch().listen(print);
|
| ProcessSignal.SIGUSR2.watch().listen(print);
|
|
|