Disable shell tests in PyPy

Do not let PyPy SEGVs result in failed build.
This commit is contained in:
ZyX 2014-07-12 13:46:28 +04:00
parent 621eb8412d
commit 9af7834463
1 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,8 @@ for script in tests/*.vim ; do
done
if ! sh tests/test_shells/test.sh ; then
echo "Failed shells"
FAILED=1
if ${PYTHON} -c 'import platform, sys; sys.exit(1 * (platform.python_implementation() == "PyPy"))' ; then
FAILED=1
fi
fi
exit $FAILED