diff options
Diffstat (limited to 'source3/script/tests/tests_all.sh')
-rwxr-xr-x | source3/script/tests/tests_all.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/script/tests/tests_all.sh b/source3/script/tests/tests_all.sh index 6f7a0c3d2d..64a7065ee9 100755 --- a/source3/script/tests/tests_all.sh +++ b/source3/script/tests/tests_all.sh @@ -1,8 +1,11 @@ +$SCRIPTDIR/test_smbtorture_s3.sh //$SERVER_IP/tmp $USERNAME $PASSWORD "" || failed=`expr $failed + $?` +$SCRIPTDIR/test_smbclient_s3.sh $SERVER $SERVER_IP || failed=`expr $failed + $?` + if [ -n "$SMBTORTURE4" ];then echo "Running Tests with Samba4's smbtorture" $SMBTORTURE4 --version - $SCRIPTDIR/test_posix_s3.sh //$SERVER/tmp $USERNAME $PASSWORD "" || failed=`expr $failed + $?` + $SCRIPTDIR/test_posix_s3.sh //$SERVER_IP/tmp $USERNAME $PASSWORD "" || failed=`expr $failed + $?` else echo "Skip Tests with Samba4's smbtorture" fi |