summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/execution/set-C1.0
blob: b7d5a4c55ab93b259704ab3af6ad665353c343c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# $FreeBSD: head/bin/sh/tests/execution/set-C1.0 308229 2016-11-02 22:33:37Z jilles $

T=$(mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXXXX") || exit
trap 'rm -rf "$T"' 0

set -C
echo . >"$T/a" &&
[ -s "$T/a" ] &&
{ ! true >"$T/a"; } 2>/dev/null &&
[ -s "$T/a" ] &&
ln -s /dev/null "$T/b" &&
true >"$T/b"