From: Pavel Filipenský Date: Sun, 24 Sep 2023 19:07:04 +0000 (+0200) Subject: s3:tests: test_smbspool.sh should be calling smbspool_argv_wrapper X-Git-Tag: tevent-0.16.0~528 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8f1298a9cbadd0021041ab6276573cc4f07d11f;p=thirdparty%2Fsamba.git s3:tests: test_smbspool.sh should be calling smbspool_argv_wrapper There is no variable named 'smbspool_argv_wrapper', the correct name is 'samba_argv_wrapper'. The smbspool_argv_wrapper was not called from this test till now. Signed-off-by: Pavel Filipenský Reviewed-by: Andrew Bartlett Autobuild-User(master): Pavel Filipensky Autobuild-Date(master): Sun Sep 24 22:33:07 UTC 2023 on atb-devel-224 --- diff --git a/source3/script/tests/test_smbspool.sh b/source3/script/tests/test_smbspool.sh index 062d81cb9b8..acec0f2dbef 100755 --- a/source3/script/tests/test_smbspool.sh +++ b/source3/script/tests/test_smbspool.sh @@ -257,7 +257,7 @@ testit "vlp verify example.ps" \ DEVICE_URI="smb://$USERNAME:$PASSWORD@$SERVER_IP/print1" export DEVICE_URI testit "smbspool print sanitized Device URI in argv0 example.ps" \ - $smbspool_argv_wrapper $samba_smbspool smb://$SERVER_IP/print1 200 $USERNAME "Testprint" 1 "options" $SRCDIR/testdata/printing/example.ps || + $samba_argv_wrapper $samba_smbspool smb://$SERVER_IP/print1 200 $USERNAME "Testprint" 1 "options" $SRCDIR/testdata/printing/example.ps || failed=$(expr $failed + 1) unset DEVICE_URI @@ -268,7 +268,7 @@ testit "vlp verify example.ps" \ DEVICE_URI="smb://$USERNAME:$PASSWORD@$SERVER_IP/print1" export DEVICE_URI testit "smbspool print sanitized Device URI in argv0 example.ps via stdin" \ - $smbspool_argv_wrapper $samba_smbspool smb://$SERVER_IP/print1 200 $USERNAME "Testprint" 1 "options" <$SRCDIR/testdata/printing/example.ps || + $samba_argv_wrapper $samba_smbspool smb://$SERVER_IP/print1 200 $USERNAME "Testprint" 1 "options" <$SRCDIR/testdata/printing/example.ps || failed=$(expr $failed + 1) unset DEVICE_URI