summaryrefslogtreecommitdiffstats
path: root/usr.sbin/afs/src/tests/exec
blob: f6535c0531b15916ec1514b338bb0e71f051b1d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
echo '#!/bin/sh' > foo.sh
export objdir
echo '$objdir/echo-n "foo"' >> foo.sh
test -f foo.sh || exit 1
chmod +x foo.sh
test -x foo.sh || exit 1
FOO=`./foo.sh`
test "X"$FOO = "Xfoo" || exit 1