summaryrefslogtreecommitdiffstats
path: root/tools/regression/bin/sh/builtins/trap1.0
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/bin/sh/builtins/trap1.0')
-rw-r--r--tools/regression/bin/sh/builtins/trap1.022
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/regression/bin/sh/builtins/trap1.0 b/tools/regression/bin/sh/builtins/trap1.0
deleted file mode 100644
index 313f6a3..0000000
--- a/tools/regression/bin/sh/builtins/trap1.0
+++ /dev/null
@@ -1,22 +0,0 @@
-# $FreeBSD$
-
-test "$(trap 'echo trapped' EXIT; :)" = trapped || exit 1
-
-test "$(trap 'echo trapped' EXIT; /usr/bin/true)" = trapped || exit 1
-
-result=$(${SH} -c 'trap "echo trapped" EXIT; /usr/bin/false')
-test $? -eq 1 || exit 1
-test "$result" = trapped || exit 1
-
-result=$(${SH} -c 'trap "echo trapped" EXIT; exec /usr/bin/false')
-test $? -eq 1 || exit 1
-test -z "$result" || exit 1
-
-result=0
-trap 'result=$((result+1))' INT
-kill -INT $$
-test "$result" -eq 1 || exit 1
-(kill -INT $$)
-test "$result" -eq 2 || exit 1
-
-exit 0
OpenPOWER on IntegriCloud