summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/trap2.0
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-09 04:03:18 -0400
committerJune McEnroe <june@causal.agency>2020-03-09 04:03:18 -0400
commit25417843af4872fc58ea6d8edc0c0713a6337bde (patch)
treec9885a49e3961c510eef155515aeb11374c24e30 /bin/1sh/tests/builtins/trap2.0
parentImport /usr/src/bin/sh from FreeBSD 12.1-RELEASE (diff)
downloadsrc-25417843af4872fc58ea6d8edc0c0713a6337bde.tar.gz
src-25417843af4872fc58ea6d8edc0c0713a6337bde.zip
Remove extraneous files from sh sources
Diffstat (limited to '')
-rw-r--r--bin/1sh/tests/builtins/trap2.052
1 files changed, 0 insertions, 52 deletions
diff --git a/bin/1sh/tests/builtins/trap2.0 b/bin/1sh/tests/builtins/trap2.0
deleted file mode 100644
index eb17a03e..00000000
--- a/bin/1sh/tests/builtins/trap2.0
+++ /dev/null
@@ -1,52 +0,0 @@
-# $FreeBSD: releng/12.1/bin/sh/tests/builtins/trap2.0 194517 2009-06-19 22:15:59Z jilles $
-# This is really a test for outqstr(), which is readily accessible via trap.
-
-runtest()
-{
-	teststring=$1
-	trap -- "$teststring" USR1
-	traps=$(trap)
-	if [ "$teststring" != "-" ] && [ -z "$traps" ]; then
-		# One possible reading of POSIX requires the above to return an
-		# empty string because backquote commands are executed in a
-		# subshell and subshells shall reset traps. However, an example
-		# in the normative description of the trap builtin shows the
-		# same usage as here, it is useful and our /bin/sh allows it.
-		echo '$(trap) is broken'
-		exit 1
-	fi
-	trap - USR1
-	eval "$traps"
-	traps2=$(trap)
-	if [ "$traps" != "$traps2" ]; then
-		echo "Mismatch for '$teststring'"
-		exit 1
-	fi
-}
-
-runtest 'echo'
-runtest 'echo hi'
-runtest "'echo' 'hi'"
-runtest '"echo" $PATH'
-runtest '\echo "$PATH"'
-runtest ' 0'
-runtest '0 '
-runtest ' 1'
-runtest '1 '
-i=1
-while [ $i -le 127 ]; do
-	c=$(printf \\"$(printf %o $i)")
-	if [ $i -lt 48 ] || [ $i -gt 57 ]; then
-		runtest "$c"
-	fi
-	runtest " $c$c"
-	runtest "a$c"
-	i=$((i+1))
-done
-IFS=,
-runtest ' '
-runtest ','
-unset IFS
-runtest ' '
-
-exit 0