Changeset: 697f69b148d7 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=697f69b148d7 Modified Files: clients/RunMtest.bat.in geom/RunMtest.bat.in monetdb4/RunMtest.bat.in monetdb5/RunMtest.bat.in pathfinder/RunMtest.bat.in sql/RunMtest.bat.in Branch: Mar2011 Log Message:
RunMtest.bat: (Try to) propagate errors from inferior processes. diffs (66 lines): diff --git a/clients/RunMtest.bat.in b/clients/RunMtest.bat.in --- a/clients/RunMtest.bat.in +++ b/clients/RunMtest.bat.in @@ -35,6 +35,7 @@ pushd "%srcdir%" call "%buildbase%\testing\Mtest.py" "--package=%pkg%" "--dbfarm=%buildbase%\%pkg%\dbfarm" "--TSTTRGBASE=%buildbase%\%pkg%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +if ERRORLEVEL 1 exit %ERRORLEVEL% popd endlocal diff --git a/geom/RunMtest.bat.in b/geom/RunMtest.bat.in --- a/geom/RunMtest.bat.in +++ b/geom/RunMtest.bat.in @@ -71,6 +71,7 @@ pushd "%srcdir%" call "%buildbase%\testing\Mtest.py" "--config=%cfg%" "--package=%pkg%" "--monet_mod_path=%MOD_PATH%" "--dbfarm=%buildbase%\%pkg%\dbfarm" "--TSTTRGBASE=%buildbase%\%pkg%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +if ERRORLEVEL 1 exit %ERRORLEVEL% popd endlocal diff --git a/monetdb4/RunMtest.bat.in b/monetdb4/RunMtest.bat.in --- a/monetdb4/RunMtest.bat.in +++ b/monetdb4/RunMtest.bat.in @@ -52,6 +52,7 @@ pushd "%srcdir%" call "%buildbase%\testing\Mtest.py" "--config=%cfg%" "--package=%pkg%" "--monet_mod_path=%MOD_PATH%" "--dbfarm=%buildbase%\%pkg%\dbfarm" "--TSTTRGBASE=%buildbase%\%pkg%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +if ERRORLEVEL 1 exit %ERRORLEVEL% popd endlocal diff --git a/monetdb5/RunMtest.bat.in b/monetdb5/RunMtest.bat.in --- a/monetdb5/RunMtest.bat.in +++ b/monetdb5/RunMtest.bat.in @@ -68,6 +68,7 @@ pushd "%srcdir%" call "%buildbase%\testing\Mtest.py" "--config=%cfg%" "--package=%pkg%" "--monet_mod_path=%MOD_PATH%" "--dbfarm=%buildbase%\%pkg%\dbfarm" "--TSTTRGBASE=%buildbase%\%pkg%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +if ERRORLEVEL 1 exit %ERRORLEVEL% popd endlocal diff --git a/pathfinder/RunMtest.bat.in b/pathfinder/RunMtest.bat.in --- a/pathfinder/RunMtest.bat.in +++ b/pathfinder/RunMtest.bat.in @@ -54,6 +54,7 @@ pushd "%srcdir%" call "%buildbase%\testing\Mtest.py" "--config=%cfg%" "--package=%pkg%" "--monet_mod_path=%MOD_PATH%" "--dbfarm=%buildbase%\%pkg%\dbfarm" "--TSTTRGBASE=%buildbase%\%pkg%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +if ERRORLEVEL 1 exit %ERRORLEVEL% popd endlocal diff --git a/sql/RunMtest.bat.in b/sql/RunMtest.bat.in --- a/sql/RunMtest.bat.in +++ b/sql/RunMtest.bat.in @@ -68,6 +68,7 @@ pushd "%srcdir%" call "%buildbase%\testing\Mtest.py" "--config=%cfg%" "--package=%pkg%" "--monet_mod_path=%MOD_PATH%" "--dbfarm=%buildbase%\%pkg%\dbfarm" "--TSTTRGBASE=%buildbase%\%pkg%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +if ERRORLEVEL 1 exit %ERRORLEVEL% popd endlocal _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
