# Make sure that `svms mkdir' fails if the file is a text file:
rm -rf mkdir_bogus_file
svms new -R mkdir_bogus_file mkdir_bogus_file
(cd mkdir_bogus_file ;						\
 touch src ;						\
 if svms mkdir src ; then				\
    echo "Command succeeded (incorrect)" ; else		\
    echo "Command failed (correct)" ;			\
 fi)
mkdir_bogus_file/src is of type "Regular file" and is not allowed in a "svms mkdir" command!
Command failed (correct)
rm -rf mkdir_bogus_file
