Andreas Schwab wrote:
> 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 ==.

Yes, indeed.
Thanks!


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

Reply via email to