From 97e7c3b8bd84edd69f6344249b24ae64e2a8b0fe Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 16 Aug 2012 08:55:43 +1000 Subject: s3-selftest: convert xattr-tdb-1 vfstest driver into a subunit test We don't use the simple smb.conf because we need to override all the paths for this to work as non-root without a panic, so we use the s3dc environment, which already loads this module. Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Thu Aug 16 02:55:19 CEST 2012 on sn-devel-104 --- source3/script/tests/xattr-tdb-1/run.sh | 55 ++++++++++++++++++++++++++++--- source3/script/tests/xattr-tdb-1/smb.conf | 5 --- 2 files changed, 50 insertions(+), 10 deletions(-) delete mode 100644 source3/script/tests/xattr-tdb-1/smb.conf (limited to 'source3/script') diff --git a/source3/script/tests/xattr-tdb-1/run.sh b/source3/script/tests/xattr-tdb-1/run.sh index 2a1b6afd63..ea7a4cbb28 100755 --- a/source3/script/tests/xattr-tdb-1/run.sh +++ b/source3/script/tests/xattr-tdb-1/run.sh @@ -1,7 +1,52 @@ #!/bin/sh -if ../../../bin/vfstest -s smb.conf -f vfstest.cmd | - grep "NT_STATUS_ACCESS_DENIED" > /dev/null 2>&1 -then - exit 1 +if [ $# -lt 2 ]; then +cat </dev/null 2>&1 + + if [ $? = 0 ] ; then + # got ACCESS_DENIED .. fail + echo vfstest got NT_STATUS_ACCESS_DENIED + false + else + true + fi +} + +testit "vfstest" test_vfstest || failed=`expr $failed + 1` + +exit $failed diff --git a/source3/script/tests/xattr-tdb-1/smb.conf b/source3/script/tests/xattr-tdb-1/smb.conf deleted file mode 100644 index 259b630c5e..0000000000 --- a/source3/script/tests/xattr-tdb-1/smb.conf +++ /dev/null @@ -1,5 +0,0 @@ -[tmp] -# "path" is ignored by vfstest, it's always set to $(pwd) -path = /tmp -writable = yes -vfs objects = xattr_tdb -- cgit