~ chicken-core (chicken-5) cf66847a5ef81b48e1d6de39b5907e2680eeb348


commit cf66847a5ef81b48e1d6de39b5907e2680eeb348
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Wed Aug 29 14:46:52 2018 +0200
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Wed Aug 29 14:46:52 2018 +0200

    Undid patch to use "env -u" as it is NOT PORTABLE

diff --git a/tests/runtests.sh b/tests/runtests.sh
index 2c2e05a5..a77a892d 100755
--- a/tests/runtests.sh
+++ b/tests/runtests.sh
@@ -63,7 +63,10 @@ mkdir -p test-repository
 cp $TYPESDB test-repository/types.db
 
 echo "======================================== repository search path ..."
-env -u CHICKEN_REPOSITORY_PATH $interpret -s repository-path-default.scm
+export -p >./env.out
+unset CHICKEN_REPOSITORY_PATH
+$interpret -s repository-path-default.scm
+. ./env.out
 $compile_s sample-module.scm -j sample-module
 cp sample-module.so $CHICKEN_INSTALL_REPOSITORY
 cp sample-module.import.scm $CHICKEN_INSTALL_REPOSITORY
Trap