diff options
author | Michael Adam <obnox@samba.org> | 2008-05-06 23:43:37 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-05-07 00:14:17 +0200 |
commit | 5621ce6fb45a85e5f381286ef307e02ed8178c7f (patch) | |
tree | b0a154b77e27f5e673729e0954099be41052457c /source3/script | |
parent | 53802412512f77082f22c279636c9a943afc77eb (diff) | |
download | samba-5621ce6fb45a85e5f381286ef307e02ed8178c7f.tar.gz samba-5621ce6fb45a85e5f381286ef307e02ed8178c7f.tar.bz2 samba-5621ce6fb45a85e5f381286ef307e02ed8178c7f.zip |
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
(This used to be commit 7418d89b2941fff307e0980d1f71f106aed8cbce)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_posix_s3.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/script/tests/test_posix_s3.sh b/source3/script/tests/test_posix_s3.sh index 11f1f0eda4..3e9998666c 100755 --- a/source3/script/tests/test_posix_s3.sh +++ b/source3/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" |