summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Bex <peter@more-magic.net>2018-08-16 22:00:05 +0200
committerPeter Bex <peter@more-magic.net>2018-08-16 22:00:05 +0200
commitb36f392a9a09bb666390260311df358c54cc0f8b (patch)
treea580a0d3be0a49635812b9827ad60935d4816eee
parent8362d124fa8df2c6fafd677c16f72facebe8ee1f (diff)
downloadscsh-process-b36f392a9a09bb666390260311df358c54cc0f8b.tar.gz
Wrap tests in module to make porting easier
-rw-r--r--tests/run.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/run.scm b/tests/run.scm
index 91389e2..98b6c25 100644
--- a/tests/run.scm
+++ b/tests/run.scm
@@ -1,7 +1,12 @@
+(module scsh-tests ()
+
+(import chicken scheme)
+
#;(include "../scsh-process.scm")
(use scsh-process)
-(use test posix srfi-13 srfi-18 (only setup-api version>=?))
+(use test utils extras ports files posix
+ srfi-13 srfi-18 (only setup-api version>=?))
(test-begin "scsh-process")
@@ -226,3 +231,4 @@
(test-end)
(test-exit)
+)