summaryrefslogtreecommitdiffstats
path: root/source/script/tests
diff options
context:
space:
mode:
authorVolker Lendecke <vl@sernet.de>2007-10-22 18:14:57 +0200
committerVolker Lendecke <vl@samba.org>2008-01-15 11:01:18 +0100
commit2036b4c5ad677b8a477b34b0f076febab0abff5e (patch)
treec5054e084c7f473bfdc9c1c7e2dd4a9e5b85026e /source/script/tests
parente6bd1395f2c1da7bcf1a31cdb297919ed6a15469 (diff)
downloadsamba-2036b4c5ad677b8a477b34b0f076febab0abff5e.tar.gz
samba-2036b4c5ad677b8a477b34b0f076febab0abff5e.tar.xz
samba-2036b4c5ad677b8a477b34b0f076febab0abff5e.zip
Implement vfs_ea_tdb
This is an option for file systems that do not implement xattrs: in lockdir/eas.tdb an array of xatts per inode is stored. It can not solve the problem that xattrs might reappear if a posix-level process deletes a file and happens to re-create it under the same name. On file systems with birthtime we might have a chance to detect this, but not with standard posix. A future version might put relief on file systems that do have xattrs but where these are severely limited in size/speed/whatever: We can put a simple marker as a native xattr, but the xattrs proper are stored in the tdb. Volker
Diffstat (limited to 'source/script/tests')
-rwxr-xr-xsource/script/tests/selftest.sh1
-rwxr-xr-xsource/script/tests/test_posix_s3.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/source/script/tests/selftest.sh b/source/script/tests/selftest.sh
index 86abb15ed1d..08bfdf601c8 100755
--- a/source/script/tests/selftest.sh
+++ b/source/script/tests/selftest.sh
@@ -186,6 +186,7 @@ cat >$SERVERCONFFILE<<EOF
map hidden = yes
map system = yes
create mask = 755
+ vfs objects = $BINDIR/ea_tdb.so
[hideunread]
copy = tmp
hide unreadable = yes
diff --git a/source/script/tests/test_posix_s3.sh b/source/script/tests/test_posix_s3.sh
index 9f672897acb..0b4a52d4b50 100755
--- a/source/script/tests/test_posix_s3.sh
+++ b/source/script/tests/test_posix_s3.sh
@@ -47,7 +47,7 @@ unix="UNIX-INFO2"
tests="$base $raw $rpc $unix"
skipped="BASE-CHARSET BASE-DELAYWRITE BASE-TCONDEV"
-skipped="$skipped RAW-ACLS RAW-COMPOSITE RAW-CONTEXT RAW-EAS"
+skipped="$skipped RAW-ACLS RAW-COMPOSITE RAW-CONTEXT"
skipped="$skipped RAW-IOCTL"
skipped="$skipped RAW-QFILEINFO RAW-QFSINFO RAW-SEARCH"
skipped="$skipped RAW-SFILEINFO RAW-STREAMS"