summary refs log tree commit diff
path: root/bin/cash/tests/builtins/trap4.0
blob: 5c31f1657bffdc1e867c723badec3630d08e53b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $FreeBSD: releng/12.0/bin/sh/tests/builtins/trap4.0 217035 2011-01-05 23:17:29Z jilles $

T=$(mktemp -d ${TMPDIR:-/tmp}/sh-test.XXXXXX)
trap 'rm -rf $T' 0
cd $T || exit 3
mkfifo fifo1

v=$(
	exec 3>&1
	: <fifo1 &
	{
		wait $!
		trap 'trap "" PIPE; echo trapped >&3 2>/dev/null' PIPE
		echo x 2>/dev/null
	} >fifo1
)
test "$v" = trapped
"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe neovim is laggy as hell in my OpenBSD VM, so I switched to vi so I could type without getting frustrated. 2021-01-09Add c -t flag to print expression typeJune McEnroe Also add missing float case. 2021-01-05Update taglineJune McEnroe