diff --git a/CI/ci-linux.sh b/CI/ci-linux.sh index 1fd5da31..b3d28017 100755 --- a/CI/ci-linux.sh +++ b/CI/ci-linux.sh @@ -96,6 +96,13 @@ cd Unittests #execute tests ./unittests --gtest_color=yes --gtest_output=xml +echo -e "${OUTPUT}" +echo "" +echo "======================================================================" +echo "Running unittests Release version with custom vector type" +echo "======================================================================" +echo -e "${NC}" + ./unittests_customvec --gtest_color=yes --gtest_output=xml cd .. @@ -136,6 +143,13 @@ cd Unittests #execute tests ./unittests --gtest_color=yes --gtest_output=xml +echo -e "${OUTPUT}" +echo "" +echo "======================================================================" +echo "Running unittests Debug version with custom vector type" +echo "======================================================================" +echo -e "${NC}" + ./unittests_customvec --gtest_color=yes --gtest_output=xml cd .. diff --git a/CI/ci-mac.sh b/CI/ci-mac.sh index 3ceb48f3..5b7ecd94 100755 --- a/CI/ci-mac.sh +++ b/CI/ci-mac.sh @@ -78,6 +78,13 @@ cd Unittests #execute tests ./unittests --gtest_color=yes --gtest_output=xml +echo -e "${OUTPUT}" +echo "" +echo "======================================================================" +echo "Running unittests Release version with minimal vector type" +echo "======================================================================" +echo -e "${NC}" + ./unittests_customvec --gtest_color=yes --gtest_output=xml cd .. @@ -118,6 +125,13 @@ cd Unittests #execute tests ./unittests --gtest_color=yes --gtest_output=xml +echo -e "${OUTPUT}" +echo "" +echo "======================================================================" +echo "Running unittests Debug version with minimal vector type" +echo "======================================================================" +echo -e "${NC}" + ./unittests_customvec --gtest_color=yes --gtest_output=xml cd ..