2010-02-06 22:57:24 +00:00
|
|
|
# $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
|
2010-10-12 18:20:38 +00:00
|
|
|
ENV=$goodfile MAIL=$mailfile ktrace -i -f "$T" ${SH} +m -i </dev/null >/dev/null 2>&1
|
2010-02-06 22:57:24 +00:00
|
|
|
if ! grep -q $goodfile "$T"; then
|
|
|
|
# ktrace problem
|
|
|
|
rc=0
|
|
|
|
elif grep -q $mailfile "$T"; then
|
|
|
|
rc=0
|
|
|
|
fi
|
|
|
|
rm "$T"
|
|
|
|
exit ${rc:-3}
|