diff options
Diffstat (limited to 'source3/script/tests/t_001.sh')
-rw-r--r-- | source3/script/tests/t_001.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/source3/script/tests/t_001.sh b/source3/script/tests/t_001.sh deleted file mode 100644 index 6d54d0e489..0000000000 --- a/source3/script/tests/t_001.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -. $SCRIPTDIR/functions - -cat >$CONFFILE<<EOF -[global] - include = $LIBDIR/common.conf - smb ports = 139 - -[test] - path = $PREFIX_ABS/tmp - read only = no -EOF - -## -## Test code -## - -/bin/rm -rf $PREFIX_ABS/tmp -mkdir $PREFIX_ABS/tmp -chmod 1777 $PREFIX_ABS/tmp - -start_smbd || exit $? - -smbclient $CONFIGURATION -L localhost -N -p 139 -ret=$? - -stop_smbd - -exit $ret |