# Make sure that an error message is generated for -e and -l:
rm -rf parent_bad_eager_lazy
svms new -R parent_bad_eager_lazy parent_bad_eager_lazy
(cd parent_bad_eager_lazy ;					\
 if svms parent -e -l ;			\
   then echo "Command succeeded (incorrect)" ;	\
   else echo "Command failed (correct)";	\
   fi)
The "-e" option can not be used with "-l" option!
Command failed (correct)
rm -rf parent_bad_eager_lazy
