1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-20 22:32:17 +02:00

tests: adjust new env test not to fail

* tests/misc/env: Create ./-i as a link to our "echo" binary,
rather than as a bourne shell script, so that env can exec it.
Set PATH to ".".
This commit is contained in:
Jim Meyering
2009-10-25 16:21:40 +01:00
parent 50e837b1c4
commit d9cf7c911f

View File

@@ -86,17 +86,13 @@ EOF
compare exp out || fail=1
# Use -- to end arguments.
cat <<EOF >./-i || framework_failure
#!/bin/sh
echo pass
EOF
chmod +x ./-i || framework_failure
case `env -i PATH="$PATH" echo good` in
ln -s "$abs_top_builddir/src/echo" ./-i || framework_failure
case `PATH="$PATH:" env -i echo good` in
good) ;;
*) fail=1 ;;
esac
case `env -- -i PATH="$PATH" echo fail` in
pass) ;;
case `env -i -- PATH=. -i no-echo` in
no-echo) ;;
*) fail=1 ;;
esac