# Make sure that an error occurs when no file is specified.
rm -rf create_no_file
svms new -R create_no_file create_no_file
(cd create_no_file ;					\
 if svms create no.file ;			\
   then	echo "Command succeeded (incorrect)" ;	\
   else	echo "Command failed (correct)" ;	\
   fi)
create_no_file/no.file is of type "Deleted" and is not allowed in a "svms create" command!
Command failed (correct)
rm -rf create_no_file
