diff options
author | Jeremy Allison <jra@samba.org> | 2008-01-15 10:19:47 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-01-15 10:19:47 -0800 |
commit | 9c63e1820bab51a7cc09878d78ddce061c3292ec (patch) | |
tree | 9e88fcb9ad8012e26c1e70b9e0a07b1f23f9e39f /source3/script | |
parent | 19e4e99bfb02b8fa722883b04237ad714d402cb3 (diff) | |
parent | ee8cf0ce40820b3e1ec025339f2b25c0001fda13 (diff) | |
download | samba-9c63e1820bab51a7cc09878d78ddce061c3292ec.tar.gz samba-9c63e1820bab51a7cc09878d78ddce061c3292ec.tar.bz2 samba-9c63e1820bab51a7cc09878d78ddce061c3292ec.zip |
Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into v3-2-test
(This used to be commit 6e17a56039be13ac1ef7004f15d154141bad7196)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/fix_bool.pl | 19 | ||||
-rwxr-xr-x | source3/script/tests/selftest.sh | 1 | ||||
-rwxr-xr-x | source3/script/tests/test_posix_s3.sh | 2 |
3 files changed, 21 insertions, 1 deletions
diff --git a/source3/script/fix_bool.pl b/source3/script/fix_bool.pl new file mode 100755 index 0000000000..c09645de7c --- /dev/null +++ b/source3/script/fix_bool.pl @@ -0,0 +1,19 @@ +#!/usr/bin/perl -w + +open(INFILE, "$ARGV[0]") || die $@; +open(OUTFILE, ">$ARGV[0].new") || die $@; + +while (<INFILE>) { + $_ =~ s/True/true/; + $_ =~ s/False/false/; + print OUTFILE "$_"; +} + +close(INFILE); +close(OUTFILE); + +rename("$ARGV[0].new", "$ARGV[0]") || die @_; + +exit(0); + + diff --git a/source3/script/tests/selftest.sh b/source3/script/tests/selftest.sh index 86abb15ed1..5a170b2117 100755 --- a/source3/script/tests/selftest.sh +++ b/source3/script/tests/selftest.sh @@ -186,6 +186,7 @@ cat >$SERVERCONFFILE<<EOF map hidden = yes map system = yes create mask = 755 + vfs objects = $BINDIR/xattr_tdb.so [hideunread] copy = tmp hide unreadable = yes diff --git a/source3/script/tests/test_posix_s3.sh b/source3/script/tests/test_posix_s3.sh index 9f672897ac..0b4a52d4b5 100755 --- a/source3/script/tests/test_posix_s3.sh +++ b/source3/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" |