add unittests for default double vec type

This commit is contained in:
Max Lyon
2019-10-22 10:17:12 +02:00
parent a15f247a6f
commit 2343577636
4 changed files with 75 additions and 13 deletions

View File

@@ -69,6 +69,8 @@ make
#build the unit tests
make unittests
cd Unittests
echo -e "${OUTPUT}"
echo ""
echo "======================================================================"
@@ -76,8 +78,6 @@ echo "Running unittests Release version with vectorchecks enabled"
echo "======================================================================"
echo -e "${NC}"
cd Unittests
#execute tests
./unittests --gtest_color=yes --gtest_output=xml
@@ -88,8 +88,19 @@ echo "Running unittests Release version with minimal vector type"
echo "======================================================================"
echo -e "${NC}"
#execute tests
./unittests_customvec --gtest_color=yes --gtest_output=xml
echo -e "${OUTPUT}"
echo ""
echo "======================================================================"
echo "Running unittests Release version with double vector type"
echo "======================================================================"
echo -e "${NC}"
#execute tests
./unittests_doublevec --gtest_color=yes --gtest_output=xml
cd ..
cd ..
@@ -115,6 +126,8 @@ make
#build the unit tests
make unittests
cd Unittests
echo -e "${OUTPUT}"
echo ""
echo "======================================================================"
@@ -122,9 +135,6 @@ echo "Running unittests Debug version with vectorchecks enabled"
echo "======================================================================"
echo -e "${NC}"
cd Unittests
#execute tests
./unittests --gtest_color=yes --gtest_output=xml
@@ -135,8 +145,19 @@ echo "Running unittests Debug version with minimal vector type"
echo "======================================================================"
echo -e "${NC}"
#execute tests
./unittests_customvec --gtest_color=yes --gtest_output=xml
echo -e "${OUTPUT}"
echo ""
echo "======================================================================"
echo "Running unittests Debug version with double vector type"
echo "======================================================================"
echo -e "${NC}"
#execute tests
./unittests_doublevec --gtest_color=yes --gtest_output=xml
cd ..
cd ..