summaryrefslogtreecommitdiffstats
path: root/bin/sh/tests/parameters/mail2.0
blob: 343c99de9b279b84544d7f6c9d56ef28cd518b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $FreeBSD$
# Test that an interactive shell accesses $MAIL.

goodfile=/var/empty/sh-test-goodfile
mailfile=/var/empty/sh-test-mailfile
T=$(mktemp sh-test.XXXXXX) || exit
ENV=$goodfile MAIL=$mailfile ktrace -i -f "$T" ${SH} +m -i </dev/null >/dev/null 2>&1
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