opnsense-src/tools/regression/bin/sh/parameters/mail1.0
David E. O'Brien f3bf9b7a16 Allow one to regression test 'sh' changes without having to install
a potentially bad /bin/sh first.
2010-10-12 18:20:38 +00:00

15 lines
379 B
Text

# $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}