Replaced hardcoded CMAKE_VERBOSE_MAKEFILE with make VERBOSE=ON in the testsuite

This commit is contained in:
Fernando Cacciola 2009-03-10 18:28:56 +00:00
parent dd4aadc373
commit fd1301b7c0
3 changed files with 2 additions and 5 deletions

View File

@ -52,7 +52,4 @@ if( NOT CGAL_COMMON_FILE_INCLUDED )
set(CMAKE_COLORMAKEFILE ON)
# Needed by the testsuite results parser
set(CMAKE_VERBOSE_MAKEFILE ON)
endif()

View File

@ -516,7 +516,7 @@ cmake '${CMAKE_GENERATOR}' -DRUNNING_CGAL_AUTO_TEST=TRUE \\
-DCGAL_REFERENCE_CACHE_DIR="\$CGAL_REFERENCE_CACHE_DIR" \\
VERBOSE=1 \\
../../..;
${MAKE_CMD} -k -fMakefile CGAL CGAL_Core CGAL_PDB CGAL_ImageIO CGAL_Qt3 CGAL_Qt4 ;
${MAKE_CMD} VERBOSE=ON -k -fMakefile CGAL CGAL_Core CGAL_PDB CGAL_ImageIO CGAL_Qt3 CGAL_Qt4 ;
cd ..;
EOF
chmod ugo+x "${CGAL_BINARY_DIR}/localbuildscript"

View File

@ -90,7 +90,7 @@ compile_and_run()
echo "Compiling \$1 ... "
SUCCES="y"
if eval '\${MAKE_CMD} VERBOSE=1 -fMakefile \$1' ; then
if eval '\${MAKE_CMD} VERBOSE=ON -fMakefile \$1' ; then
echo " succesful compilation of \$1" >> \$ERRORFILE
else
echo " ERROR: compilation of \$1" >> \$ERRORFILE