~ chicken-core (chicken-5) 1229e0a01c8c125042eefabd9b7ca5053bfc5010
commit 1229e0a01c8c125042eefabd9b7ca5053bfc5010
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Sat Jul 30 21:18:36 2016 +0200
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Sat Jul 30 21:19:44 2016 +0200
Add chicken.memory to modules installed for tests.
And also a shortcut, to make it like the other modules.
diff --git a/modules.scm b/modules.scm
index 6fcd1be3..0624d2a7 100644
--- a/modules.scm
+++ b/modules.scm
@@ -957,6 +957,7 @@
(##sys#register-module-alias 'keyword 'chicken.keyword)
(##sys#register-module-alias 'locative 'chicken.locative)
(##sys#register-module-alias 'lolevel 'chicken.lolevel)
+(##sys#register-module-alias 'memory 'chicken.memory)
(##sys#register-module-alias 'ports 'chicken.ports)
(##sys#register-module-alias 'posix 'chicken.posix)
(##sys#register-module-alias 'pretty-print 'chicken.pretty-print)
diff --git a/tests/runtests.sh b/tests/runtests.sh
index e108c3c7..72cb56e8 100755
--- a/tests/runtests.sh
+++ b/tests/runtests.sh
@@ -54,6 +54,7 @@ for x in \
chicken.keyword.import.so \
chicken.locative.import.so \
chicken.lolevel.import.so \
+ chicken.memory.import.so \
chicken.pathname.import.so \
chicken.ports.import.so \
chicken.posix.import.so \
Trap