Try to show test results in gitlab

This commit is contained in:
Jan Möbius
2020-05-25 07:16:41 +02:00
parent 7c6a075985
commit 943e846e73
3 changed files with 94 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ echo -e "${NC}"
cd Unittests
#execute tests
./unittests --gtest_color=yes --gtest_output=xml
./unittests --gtest_color=yes --gtest_output="xml:report.xml"
echo -e "${OUTPUT}"
echo ""
@@ -51,7 +51,7 @@ echo "Running unittests $BUILD_TYPE version with custom vector type"
echo "======================================================================"
echo -e "${NC}"
./unittests_customvec --gtest_color=yes --gtest_output=xml
./unittests_customvec --gtest_color=yes --gtest_output="xml:report-customvec.xml"
echo -e "${OUTPUT}"
echo ""
@@ -61,7 +61,7 @@ echo "======================================================================"
echo -e "${NC}"
#execute tests
./unittests_doublevec --gtest_color=yes --gtest_output=xml
./unittests_doublevec --gtest_color=yes --gtest_output="xml:report-doublevec.xml"
cd ..
cd ..
cd ..