diff options
author | Denys Vlasenko | 2016-10-01 23:28:02 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-10-01 23:28:02 +0200 |
commit | ff59b7b112e5dd9a69e138aa01b91d76c8b04be6 (patch) | |
tree | c22d1428ee9fe07175295b660b7cb522739928ea /shell/ash_test/ash-signals | |
parent | b98b4c103f32a3915557532806ba5203a3de6ee2 (diff) | |
download | busybox-ff59b7b112e5dd9a69e138aa01b91d76c8b04be6.zip busybox-ff59b7b112e5dd9a69e138aa01b91d76c8b04be6.tar.gz |
ash,hush: add a test that "continue" does not cripple traps
Both shells pass this test.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-signals')
-rw-r--r-- | shell/ash_test/ash-signals/continue_and_trap1.right | 1 | ||||
-rwxr-xr-x | shell/ash_test/ash-signals/continue_and_trap1.tests | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/ash_test/ash-signals/continue_and_trap1.right b/shell/ash_test/ash-signals/continue_and_trap1.right new file mode 100644 index 0000000..d2dd0af --- /dev/null +++ b/shell/ash_test/ash-signals/continue_and_trap1.right @@ -0,0 +1 @@ +Exiting diff --git a/shell/ash_test/ash-signals/continue_and_trap1.tests b/shell/ash_test/ash-signals/continue_and_trap1.tests new file mode 100755 index 0000000..2a5c147 --- /dev/null +++ b/shell/ash_test/ash-signals/continue_and_trap1.tests @@ -0,0 +1,7 @@ +trap "echo Exiting; exit" INT + +(sleep 1; kill -s INT $$) & + +while continue; do + continue; +done |