diff options
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/selftest.sh | 3 | ||||
-rwxr-xr-x | source3/script/tests/test_posix_s3.sh | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/source3/script/tests/selftest.sh b/source3/script/tests/selftest.sh index 80e50429ad..c952ef2029 100755 --- a/source3/script/tests/selftest.sh +++ b/source3/script/tests/selftest.sh @@ -266,6 +266,9 @@ cat >$SERVERCONFFILE<<EOF [hideunread] copy = tmp hide unreadable = yes +[tmpcase] + copy = tmp + case sensitive = yes [hideunwrite] copy = tmp hide unwriteable files = yes diff --git a/source3/script/tests/test_posix_s3.sh b/source3/script/tests/test_posix_s3.sh index 60ed3e44eb..d54cf7bb8a 100755 --- a/source3/script/tests/test_posix_s3.sh +++ b/source3/script/tests/test_posix_s3.sh @@ -96,6 +96,10 @@ for t in $tests; do else testit "$name" $VALGRIND $SMBTORTURE4 $TORTURE4_OPTIONS $ADDARGS $unc -U"$username"%"$password" $t || failed=`expr $failed + 1` fi + if [ "$t" = "RAW-CHKPATH" ]; then + echo "Testing with case sensitive" + testit "$name" $VALGRIND $SMBTORTURE4 $TORTURE4_OPTIONS $ADDARGS "$unc"case -U"$username"%"$password" $t || failed=`expr $failed + 1` + fi done testok $0 $failed |