Merge branch 'feature-free-functions' into 'master'

Feature free functions

Closes #52

See merge request OpenMesh/OpenMesh!168
This commit is contained in:
Jan Möbius
2018-04-18 14:41:56 +02:00
19 changed files with 348 additions and 60 deletions

View File

@@ -117,6 +117,8 @@ cd unittests
unittests.exe --gtest_output=xml
unittests_customvec.exe --gtest_output=xml
cd ..
cd ..
@@ -143,6 +145,8 @@ cd unittests
unittests.exe --gtest_output=xml
unittests_customvec.exe --gtest_output=xml
IF %errorlevel% NEQ 0 exit /b %errorlevel%
cd ..

View File

@@ -96,6 +96,15 @@ 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 ..
cd ..
@@ -134,5 +143,14 @@ 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 ..
cd ..

View File

@@ -78,6 +78,15 @@ 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 ..
cd ..
@@ -116,6 +125,15 @@ 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 ..
cd ..