diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-04-05 09:44:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:00:18 -0500 |
commit | c35f146d661889b84c032f7866266d8a23e2e28a (patch) | |
tree | 74f4a2d1a88cc961451a4bdcf223328d28a9a339 /source4/script/tests/test_posix.sh | |
parent | e221db7a39094f0e456388454096d4cdd88082e9 (diff) | |
download | samba-c35f146d661889b84c032f7866266d8a23e2e28a.tar.gz samba-c35f146d661889b84c032f7866266d8a23e2e28a.tar.bz2 samba-c35f146d661889b84c032f7866266d8a23e2e28a.zip |
r14929: add some comments
metze
(This used to be commit 5d40e10d8e5cef542826cd6ebda85cd602a2bf11)
Diffstat (limited to 'source4/script/tests/test_posix.sh')
-rwxr-xr-x | source4/script/tests/test_posix.sh | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/source4/script/tests/test_posix.sh b/source4/script/tests/test_posix.sh index 33264d4b1e..a9f2efc6bd 100755 --- a/source4/script/tests/test_posix.sh +++ b/source4/script/tests/test_posix.sh @@ -20,7 +20,12 @@ ADDARGS="$*" incdir=`dirname $0` . $incdir/test_functions.sh -base="BASE-ATTR BASE-CHARSET BASE-CHKPATH BASE-DELAYWRITE BASE-DELETE" +# +# please don't remove tests here, when you want them to be skipped! +# just add them to the skipped line below +# this should be the complete list smbtorture offers as BASE-* tests +# +base="BASE-ATTR BASE-CHARSET BASE-CHKPATH BASE-DEFER_OPEN BASE-DELAYWRITE BASE-DELETE" base="$base BASE-DENY1 BASE-DENY2 BASE-DENY3 BASE-DENYDOS BASE-DIR1 BASE-DIR2" base="$base BASE-DISCONNECT BASE-FDPASS BASE-LOCK1 BASE-LOCK2 BASE-LOCK3 BASE-LOCK4" base="$base BASE-LOCK5 BASE-LOCK6 BASE-LOCK7 BASE-MANGLE BASE-NEGNOWAIT BASE-NTDENY1" @@ -28,6 +33,11 @@ base="$base BASE-NTDENY2 BASE-OPEN BASE-OPENATTR BASE-PROPERTIES BASE-RENAME BAS base="$base BASE-SECLEAK BASE-TCON BASE-TCONDEV BASE-TRANS2 BASE-UNLINK BASE-VUID" base="$base BASE-XCOPY" +# +# please don't remove tests here, when you want them to be skipped! +# just add them to the skipped line below +# this should be the complete list smbtorture offers as RAW-* tests +# raw="RAW-ACLS RAW-CHKPATH RAW-CLOSE RAW-COMPOSITE RAW-CONTEXT RAW-EAS" raw="$raw RAW-IOCTL RAW-LOCK RAW-MKDIR RAW-MUX RAW-NOTIFY RAW-OPEN RAW-OPLOCK" raw="$raw RAW-QFILEINFO RAW-QFSINFO RAW-READ RAW-RENAME RAW-SEARCH RAW-SEEK" @@ -35,7 +45,10 @@ raw="$raw RAW-SFILEINFO RAW-SFILEINFO-BUG RAW-STREAMS RAW-UNLINK RAW-WRITE" tests="$base $raw" -skipped="BASE-CHARSET BASE-DELAYWRITE RAW-COMPOSITE RAW-OPLOCK BASE-DEFER_OPEN" +# +# please add tests you want to be skipped here! +# +skipped="BASE-CHARSET BASE-DEFER_OPEN BASE-DELAYWRITE RAW-COMPOSITE RAW-OPLOCK" echo "WARNING: Skipping tests $skipped" |