summaryrefslogtreecommitdiffstats
path: root/bin/sh/tests/parameters/mail1.0
blob: 5791a5accc7cfb20fdea3e3052f18baa58b4472a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $FreeBSD$
# Test that a non-interactive shell does not access $MAIL.

goodfile=/var/empty/sh-test-goodfile
mailfile=/var/empty/sh-test-mailfile
T=$(mktemp sh-test.XXXXXX) || exit
MAIL=$mailfile ktrace -i -f "$T" ${SH} -c "[ -s $goodfile ]" 2>/dev/null
if ! grep -q $goodfile "$T"; then
	# ktrace problem
	rc=0
elif ! grep -q $mailfile "$T"; then
	rc=0
fi
rm "$T"
exit ${rc:-3}
OpenPOWER on IntegriCloud