From f3be15abb505c46cda593901051cab51f2e114bb Mon Sep 17 00:00:00 2001 From: matteo Date: Sat, 24 Jan 2026 15:46:19 +0100 Subject: [PATCH] fix: testsuite sees the BIN_PATH, default value is to src/42sh --- tests/wrap.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/wrap.sh b/tests/wrap.sh index 5cd6f53..a3bd89e 100755 --- a/tests/wrap.sh +++ b/tests/wrap.sh @@ -1,3 +1,7 @@ +if [ "$BIN_PATH" = "" ]; +then export BIN_PATH="$(pwd)/42sh" +fi + if [ "$COVERAGE" = "yes" ]; #coverage then ./testsuite && ../tests/functional/run-tests.sh else ../tests/functional/run-tests.sh