From b36f392a9a09bb666390260311df358c54cc0f8b Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Thu, 16 Aug 2018 22:00:05 +0200 Subject: Wrap tests in module to make porting easier --- tests/run.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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) +) -- cgit v1.2.3