aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-trap/usage.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-trap/usage.tests')
-rwxr-xr-xshell/hush_test/hush-trap/usage.tests23
1 files changed, 0 insertions, 23 deletions
diff --git a/shell/hush_test/hush-trap/usage.tests b/shell/hush_test/hush-trap/usage.tests
deleted file mode 100755
index d29c6e74a..000000000
--- a/shell/hush_test/hush-trap/usage.tests
+++ /dev/null
@@ -1,23 +0,0 @@
-# no output -- default state
-echo ___
-trap
-
-# assign some traps
-echo ___
-trap "a" EXIT INT USR1 USR2
-
-# show them all
-echo ___
-trap
-
-# clear one
-echo ___
-trap 0 INT
-echo ___
-trap
-
-# clear another
-echo ___
-trap "-" USR1
-echo ___
-trap