summaryrefslogtreecommitdiffstats
path: root/tools/regression
diff options
context:
space:
mode:
authorjilles <jilles@FreeBSD.org>2009-06-14 16:21:51 +0000
committerjilles <jilles@FreeBSD.org>2009-06-14 16:21:51 +0000
commit52854b093cc6b0b3a6703a5ff1f4ccd815830c7a (patch)
tree6c0da99257a7fd54516b4b562bc02a605146be1d /tools/regression
parent90ad5bd1d703073250f0e36d5ddc13c9560359b0 (diff)
downloadFreeBSD-src-52854b093cc6b0b3a6703a5ff1f4ccd815830c7a.zip
FreeBSD-src-52854b093cc6b0b3a6703a5ff1f4ccd815830c7a.tar.gz
Add tests for r194127 and r194128.
Approved by: ed (mentor)
Diffstat (limited to 'tools/regression')
-rw-r--r--tools/regression/bin/sh/builtins/trap1.022
-rw-r--r--tools/regression/bin/sh/execution/fork1.07
2 files changed, 29 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/builtins/trap1.0 b/tools/regression/bin/sh/builtins/trap1.0
new file mode 100644
index 0000000..1a87f4c
--- /dev/null
+++ b/tools/regression/bin/sh/builtins/trap1.0
@@ -0,0 +1,22 @@
+# $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
diff --git a/tools/regression/bin/sh/execution/fork1.0 b/tools/regression/bin/sh/execution/fork1.0
new file mode 100644
index 0000000..3ed5de2
--- /dev/null
+++ b/tools/regression/bin/sh/execution/fork1.0
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+result=$(sh -c 'ps -p $$ -o comm=')
+test "$result" = "ps" || exit 1
+
+result=$(sh -c 'ps -p $$ -o comm=; :')
+test "$result" = "sh" || exit 1
OpenPOWER on IntegriCloud