Jim Meyering <j...@meyering.net> writes:

> diff --git a/tests/chroot/credentials b/tests/chroot/credentials
> index f3e7a32..fd87a86 100644
> --- a/tests/chroot/credentials
> +++ b/tests/chroot/credentials
> @@ -29,13 +29,15 @@ require_root_
>  fail=0
>
>  # Verify that root credentials are kept.
> -test `chroot / whoami` == root || fail=1
> -test "`groups`" == "`chroot / groups`" || fail=1
> +test $(chroot / whoami) == root || fail=1
> +test "$(groups)" == "$(chroot / groups)" || fail=1

This should use = instead of ==.

Andreas.

-- 
Andreas Schwab, sch...@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


_______________________________________________
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to