diff --git a/CI/ci-linux.sh b/CI/ci-linux.sh index 69885dc52616b0b227655f2c4a2e530e3837a365..18b7bf06118b32faaa9219fb0e0302318ae38d25 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 335ea2aef1036d9bc3618547ce3f4d9659b5f3b8..37478459ae1543e6e1a7d19158f3470ea1bbce3b 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