# Make sure that an error message is generated for -d and -h:
rm -rf parent_bad_dir_url
svms new -R parent_bad_dir_url parent_bad_dir_url
(cd parent_bad_dir_url ;					\
 if svms parent -d /tmp -h http://foo.bar/ ;	\
   then echo "Command succeeded (incorrect)" ;	\
   else echo "Command failed (correct)";	\
   fi)
The "-d" option can not be used with "-h" option!
Command failed (correct)
rm -rf parent_bad_dir_url
