From 1e84e4026e3c8f0b94cfaf61a089b075f07417f1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 29 Apr 2007 20:37:59 +0000 Subject: r22575: move script/tests/ -> selftest/ as discussed with jelmer and abartlet metze (This used to be commit e9fe3c40e10accb63d7a2124d3a7e77e499c4209) --- source4/selftest/test_posix.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 source4/selftest/test_posix.sh (limited to 'source4/selftest/test_posix.sh') diff --git a/source4/selftest/test_posix.sh b/source4/selftest/test_posix.sh new file mode 100755 index 0000000000..88040def88 --- /dev/null +++ b/source4/selftest/test_posix.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +# this runs the file serving tests that are expected to pass with the +# current posix ntvfs backend + +ADDARGS="$*" + +incdir=`dirname $0` +. $incdir/test_functions.sh + +smb2=`bin/smbtorture --list | grep "^SMB2-" | xargs` +raw=`bin/smbtorture --list | grep "^RAW-" | xargs` +base=`bin/smbtorture --list | grep "^BASE-" | xargs` +tests="$base $raw $smb2" + +for t in $tests; do + if [ ! -z "$start" -a "$start" != $t ]; then + continue; + fi + start="" + plantest "$t" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/tmp -U"\$USERNAME"%"\$PASSWORD" $t +done -- cgit