summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
+)