# Make sure that a create on top of an existing file fails:
rm -rf create_duplicate
svms new -R create_duplicate create_duplicate
echo Hello > create_duplicate/hello.txt
(cd create_duplicate ;					\
 svms create hello.txt ;			\
 chmod +w hello.txt ;				\
 if svms create hello.txt ;			\
   then	echo "Command succeeded (incorrect)" ;	\
   else echo "Command failed (correct)";	\
   fi)
create_duplicate/SVMS/h.hello.txt should not exist!
Command failed (correct)
rm -rf create_duplicate
