From d3e2f99f27a8d761d1e366af11ca54ce5617be6f Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 21 Aug 2023 18:57:03 +0200 Subject: [PATCH] Revert "skip the simple project build on graalpy" This reverts commit 7076bed5d21bbb8e1beea75b61efca6c95bd7e18. --- tests/run_tests.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 56d8e6b2..84d87b57 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -78,7 +78,6 @@ for PYTHON in /opt/python/*/bin/python; do test "${LINK_VERSION}" = "${REAL_VERSION}" # check a simple project can be built - if [ "${IMPLEMENTATION}" != "graalpy" ]; then SRC_DIR=/tmp/forty-two-${IMPLEMENTATION}${PYVERS} DIST_DIR=/tmp/dist-${IMPLEMENTATION}${PYVERS} cp -rf ${MY_DIR}/forty-two ${SRC_DIR} @@ -100,7 +99,6 @@ for PYTHON in /opt/python/*/bin/python; do echo "invalid answer, expecting 42" exit 1 fi - fi PYTHON_COUNT=$(( $PYTHON_COUNT + 1 )) done