diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-02-21 09:10:33 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-02-22 14:50:14 +1100 |
commit | 56c28d1cfb06688f77a87fb2af0609c72db829bc (patch) | |
tree | b6a0d28a2f7a408a202c66765dbf75c011910988 /source3/script | |
parent | 1650da8a9964ba2ca3d389bdb39f65f7fa579ffc (diff) | |
download | samba-56c28d1cfb06688f77a87fb2af0609c72db829bc.tar.gz samba-56c28d1cfb06688f77a87fb2af0609c72db829bc.tar.bz2 samba-56c28d1cfb06688f77a87fb2af0609c72db829bc.zip |
s3-tests use $PREFIX to ensure tests don't work outside the test area
Andrew Bartlett
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_smbclient_s3.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source3/script/tests/test_smbclient_s3.sh b/source3/script/tests/test_smbclient_s3.sh index 075c6c548d..1335a37cef 100755 --- a/source3/script/tests/test_smbclient_s3.sh +++ b/source3/script/tests/test_smbclient_s3.sh @@ -2,9 +2,9 @@ # this runs the file serving tests that are expected to pass with samba3 -if [ $# -lt 6 ]; then +if [ $# -lt 7 ]; then cat <<EOF -Usage: test_smbclient_s3.sh SERVER SERVER_IP USERNAME PASSWORD USERID LOCAL_PATH +Usage: test_smbclient_s3.sh SERVER SERVER_IP USERNAME PASSWORD USERID LOCAL_PATH PREFIX EOF exit 1; fi @@ -15,9 +15,10 @@ USERNAME="$3" PASSWORD="$4" USERID="$5" LOCAL_PATH="$6" +PREFIX="$7" SMBCLIENT="$VALGRIND ${SMBCLIENT:-$BINDIR/smbclient} $CONFIGURATION" WBINFO="$VALGRIND ${WBINFO:-$BINDIR/wbinfo}" -shift 6 +shift 7 ADDARGS="$*" test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && { @@ -58,7 +59,7 @@ test_noninteractive_no_prompt() test_interactive_prompt_stdout() { prompt="smb" - tmpfile=/tmp/smbclient.in.$$ + tmpfile=$PREFIX/smbclient_interactive_prompt_commands cat > $tmpfile <<EOF du @@ -93,7 +94,7 @@ EOF test_bad_symlink() { prompt="posix_unlink deleted file /newname" - tmpfile=/tmp/smbclient.in.$$ + tmpfile=$PREFIX/smbclient_bad_symlinks_commands cat > $tmpfile <<EOF posix |