From: Michael Adam Date: Tue, 6 May 2008 21:43:37 +0000 (+0200) Subject: testsuite: allow selection of posix_s3 subtests by env var POSIX_SUBTESTS. X-Git-Tag: samba-3.3.0pre1~1358 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7418d89b2941fff307e0980d1f71f106aed8cbce;p=thirdparty%2Fsamba.git testsuite: allow selection of posix_s3 subtests by env var POSIX_SUBTESTS. This allows for calling e.g. TESTS=posix_s3 POSIX_SUBTESTS="RPC-SAMBA3-GETUSERNAME" make test Michael --- diff --git a/source/script/tests/test_posix_s3.sh b/source/script/tests/test_posix_s3.sh index 11f1f0eda40..3e9998666c4 100755 --- a/source/script/tests/test_posix_s3.sh +++ b/source/script/tests/test_posix_s3.sh @@ -46,6 +46,10 @@ unix="UNIX-INFO2" tests="$base $raw $rpc $unix" +if test "x$POSIX_SUBTESTS" != "x" ; then + tests="$POSIX_SUBTESTS" +fi + skipped="BASE-CHARSET BASE-TCONDEV" skipped="$skipped RAW-ACLS RAW-COMPOSITE RAW-CONTEXT" skipped="$skipped RAW-IOCTL"