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