made cubrid setup more tolerant to failures

this should now not stop the whole test suite but only fail for cubrid
This commit is contained in:
Carsten Brandt
2015-03-29 15:28:44 +02:00
parent ee75f2a34a
commit fd99fe1efa

View File

@ -48,10 +48,10 @@ export PATH
# start cubrid # start cubrid
echo "starting cubrid..." echo "starting cubrid..."
cubrid service start cubrid service start || echo "starting CUBRID services failed"
# create and start the demo db # create and start the demo db
$CUBRID/demo/make_cubrid_demo.sh $CUBRID/demo/make_cubrid_demo.sh || echo "setting up CUBRID demodb failed"
cubrid server start demodb cubrid server start demodb || echo "starting CUBRID demodb failed"
echo "" echo ""
echo "Installed CUBRID $CUBRID_VERSION" echo "Installed CUBRID $CUBRID_VERSION"