From d119277f0a12425286ab64630ffa0193e4d6390d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Thu, 3 Dec 2015 11:08:30 +0100 Subject: [PATCH] Missing escape flag for echo --- CI/ci-linux.sh | 32 ++++++++++++++++---------------- CI/ci-mac.sh | 32 ++++++++++++++++---------------- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/CI/ci-linux.sh b/CI/ci-linux.sh index 69885dc5..18b7bf06 100755 --- a/CI/ci-linux.sh +++ b/CI/ci-linux.sh @@ -35,12 +35,12 @@ NC='\033[0m' OUTPUT='\033[0;32m' -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Release version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-release-$BUILDPATH-Vector-Checks ]; then @@ -57,12 +57,12 @@ make #build the unit tests make unittests -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running unittests Release version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" cd Unittests @@ -72,12 +72,12 @@ cd Unittests cd .. cd .. -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Release version with vectorchecks disabled for python tests" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-release-$BUILDPATH ]; then mkdir build-release-$BUILDPATH @@ -90,12 +90,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A #build it make -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running Python unittests Release version " echo "======================================================================" -echo "${NC}" +echo -e "${NC}" # Execute Python unittests @@ -108,12 +108,12 @@ cd .. -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Debug version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-debug-$BUILDPATH-Vector-Checks ]; then @@ -130,12 +130,12 @@ make #build the unit tests make unittests -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running unittests Debug version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" cd Unittests @@ -146,12 +146,12 @@ cd Unittests cd .. cd .. -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Debug version with vectorchecks disabled for python tests" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-debug-$BUILDPATH ]; then mkdir build-debug-$BUILDPATH @@ -164,12 +164,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP #build it make -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running Python unittests Debug version " echo "======================================================================" -echo "${NC}" +echo -e "${NC}" # Execute Python unittests diff --git a/CI/ci-mac.sh b/CI/ci-mac.sh index 335ea2ae..37478459 100755 --- a/CI/ci-mac.sh +++ b/CI/ci-mac.sh @@ -27,12 +27,12 @@ NC='\033[0m' OUTPUT='\033[0;32m' -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Release version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-release-$BUILDPATH-Vector-Checks ]; then @@ -49,12 +49,12 @@ make #build the unit tests make unittests -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running unittests Release version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" cd Unittests @@ -64,12 +64,12 @@ cd Unittests cd .. cd .. -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Release version with vectorchecks disabled for python tests" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-release-$BUILDPATH ]; then mkdir build-release-$BUILDPATH @@ -82,12 +82,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A #build it make -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running Python unittests Release version " echo "======================================================================" -echo "${NC}" +echo -e "${NC}" # Execute Python unittests @@ -102,12 +102,12 @@ cd .. -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Debug version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-debug-$BUILDPATH-Vector-Checks ]; then @@ -124,12 +124,12 @@ make #build the unit tests make unittests -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running unittests Debug version with vectorchecks enabled" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" cd Unittests @@ -140,12 +140,12 @@ cd Unittests cd .. cd .. -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Building Debug version with vectorchecks disabled for python tests" echo "======================================================================" -echo "${NC}" +echo -e "${NC}" if [ ! -d build-debug-$BUILDPATH ]; then mkdir build-debug-$BUILDPATH @@ -158,12 +158,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP #build it make -echo "${OUTPUT}" +echo -e "${OUTPUT}" echo "" echo "======================================================================" echo "Running Python unittests Debug version " echo "======================================================================" -echo "${NC}" +echo -e "${NC}" # Execute Python unittests -- GitLab