From: Andreas Schneider Date: Mon, 13 Jun 2022 13:55:25 +0000 (+0200) Subject: testprogs: Fix shellcheck errors in test_kinit_trusts_mit.sh X-Git-Tag: talloc-2.4.0~1350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e4ea99e5ff0332e1409d7c1789fa92fd00d0818;p=thirdparty%2Fsamba.git testprogs: Fix shellcheck errors in test_kinit_trusts_mit.sh testprogs/blackbox/test_kinit_trusts_mit.sh:55:63: error: Double quote array expansions to avoid re-splitting elements. [SC2068] testprogs/blackbox/test_kinit_trusts_mit.sh:109:106: error: Double quote array expansions to avoid re-splitting elements. [SC2068] Signed-off-by: Andreas Schneider Reviewed-by: Pavel Filipenský --- diff --git a/testprogs/blackbox/test_kinit_trusts_mit.sh b/testprogs/blackbox/test_kinit_trusts_mit.sh index 35fcb6d1c53..27ed89861cb 100755 --- a/testprogs/blackbox/test_kinit_trusts_mit.sh +++ b/testprogs/blackbox/test_kinit_trusts_mit.sh @@ -52,7 +52,7 @@ test_smbclient() shift shift echo "test: $name" - $VALGRIND $smbclient $CONFIGURATION $SMBCLIENT_UNC -c "$cmd" $@ + $VALGRIND $smbclient $CONFIGURATION $SMBCLIENT_UNC -c "$cmd" "$@" status=$? if [ x$status = x0 ]; then echo "success: $name" @@ -106,7 +106,7 @@ test_smbclient "Test login with kerberos ccache" 'ls' --use-krb5-ccache=$KRB5CCN testit "kinit renew ticket" $samba_kinit -R test_smbclient "Test login with kerberos ccache" 'ls' --use-krb5-ccache=$KRB5CCNAME || failed=$(expr $failed + 1) -testit "check time with kerberos ccache" $VALGRIND $samba_tool time $SERVER.$REALM $CONFIGURATION -k yes $@ || failed=$(expr $failed + 1) +testit "check time with kerberos ccache" $VALGRIND $samba_tool time $SERVER.$REALM $CONFIGURATION -k yes "$@" || failed=$(expr $failed + 1) $samba_kdestroy