diff options
author | Volker Lendecke <vl@samba.org> | 2012-02-02 18:30:40 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-02-02 20:35:27 +0100 |
commit | c251667b4f799544b4d965492a9ce5f61ebefb61 (patch) | |
tree | dc5f02466ea82493d36112cadba5db92f08a3970 /source3/script/tests/stream-depot/run.sh | |
parent | bbde29824179fc78ee923ccd24e4039b96eb866d (diff) | |
download | samba-c251667b4f799544b4d965492a9ce5f61ebefb61.tar.gz samba-c251667b4f799544b4d965492a9ce5f61ebefb61.tar.xz samba-c251667b4f799544b4d965492a9ce5f61ebefb61.zip |
s3: Move stream_depot test to script/tests
Diffstat (limited to 'source3/script/tests/stream-depot/run.sh')
-rwxr-xr-x | source3/script/tests/stream-depot/run.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/script/tests/stream-depot/run.sh b/source3/script/tests/stream-depot/run.sh new file mode 100755 index 00000000000..f1e75fbf716 --- /dev/null +++ b/source3/script/tests/stream-depot/run.sh @@ -0,0 +1,9 @@ +#!/bin/sh +rm -r .streams +../../../bin/vfstest -s smb.conf -f vfstest.cmd +NUM=`find .streams | wc -l` +if [ $NUM -ne 3 ] ; then + echo "streams_depot left ${NUM} in .streams, expected 3" + exit 1 +fi +exit 0 |