Disable python unittests for c++98 on mac

(cherry picked from commit 180a55e885bf7569a91f05e6c9f0117a7e98e77e)
This commit is contained in:
Jan Möbius
2015-12-15 08:18:07 +01:00
parent 60fded1e95
commit 3d77917eef

View File

@@ -165,6 +165,7 @@ echo "Running Python unittests Debug version "
echo "======================================================================"
echo -e "${NC}"
if [ "$LANGUAGE" == "C++11" ]; then
# Execute Python unittests
cd Python-Unittests
@@ -172,3 +173,6 @@ cd Python-Unittests
rm -f openmesh.so
cp ../Build/python/openmesh.so .
python -m unittest discover -v
else
echo "WARNING! Python unittests disabled for clang on Mac with c++98 !!"
fi