diff options
Diffstat (limited to 'tests/chmod/setgid')
-rwxr-xr-x | tests/chmod/setgid | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chmod/setgid b/tests/chmod/setgid index 081c36e0d..7fc6db214 100755 --- a/tests/chmod/setgid +++ b/tests/chmod/setgid @@ -31,7 +31,7 @@ chmod g+s d 2> /dev/null && env -- test -g d || # to which you belong. When that happens, the above chmod fails. So # here, upon failure, we try to set the group, then rerun the chmod command. - id_g=`id -g` && + id_g=$(id -g) && test -n "$id_g" && chgrp "$id_g" d && chmod g+s d || framework_failure_ @@ -52,7 +52,7 @@ do expected_mode=drwxr-xr-x ;; *) expected_mode=drwxr-sr-x ;; esac - ls_output=`ls -ld d` + ls_output=$(ls -ld d) case $ls_output in $expected_mode*) ;; *) fail=1 ;; |