From d832c0bcac8da6f661ef58ccc328b81ef36691b9 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 3 Mar 2011 09:43:14 +0000 Subject: [PATCH] When SHOW_PROGRESS is non-null, the direction of localtestscript and localbuildscript were wrong: the stderr output was not reported in the log files. --- Scripts/developer_scripts/autotest_cgal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/developer_scripts/autotest_cgal b/Scripts/developer_scripts/autotest_cgal index 15647084f73..aa1eb94a729 100755 --- a/Scripts/developer_scripts/autotest_cgal +++ b/Scripts/developer_scripts/autotest_cgal @@ -536,7 +536,7 @@ EOF fi chmod ugo+x "${CGAL_BINARY_DIR}/localbuildscript" if [ -n "${SHOW_PROGRESS}" ]; then - remote_command ${HOST} "${CGAL_BINARY_DIR}/localbuildscript" | tee "${ACTUAL_LOGFILE}.build.${PLATFORM}" 2>&1 + remote_command ${HOST} "${CGAL_BINARY_DIR}/localbuildscript" 2>&1 | tee "${ACTUAL_LOGFILE}.build.${PLATFORM}" else remote_command ${HOST} "${CGAL_BINARY_DIR}/localbuildscript" > "${ACTUAL_LOGFILE}.build.${PLATFORM}" 2>&1 fi @@ -676,7 +676,7 @@ EOF chmod ugo+x "${CGAL_BINARY_DIR}"/localtestscript* if [ -n "${SHOW_PROGRESS}" ]; then - remote_command ${HOST} "${CGAL_BINARY_DIR}/localtestscript" | tee "${ACTUAL_LOGFILE}.test.${PLATFORM}" 2>&1 + remote_command ${HOST} "${CGAL_BINARY_DIR}/localtestscript" 2>&1 | tee "${ACTUAL_LOGFILE}.test.${PLATFORM}" else remote_command ${HOST} "${CGAL_BINARY_DIR}/localtestscript" > "${ACTUAL_LOGFILE}.test.${PLATFORM}" 2>&1 fi