# OSX Git with FSF GCC is broken, disable completely for now. See #17091
export NO_APPLE_COMMON_CRYPTO=1

# Disable network tests
export GIT_TEST_HTTPD=false

cd src

echo "Testing git..."
$MAKE test
if [ $? -ne 0 ]; then
    echo >&2 "Error running git's test suite."
    exit 1
fi

