From 1352a75547bd80e5627e74850ee33e3c73cb59b4 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Sat, 1 Jan 2005 22:46:43 +0000 Subject: [PATCH] Use define-module to keep bindings from subsequent tests, use test-suite lib for stand-alone checking. --- test-suite/tests/srfi-39.test | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test-suite/tests/srfi-39.test b/test-suite/tests/srfi-39.test index 22d2bd056..de396caff 100644 --- a/test-suite/tests/srfi-39.test +++ b/test-suite/tests/srfi-39.test @@ -1,6 +1,6 @@ ;;;; srfi-39.test --- -*- scheme -*- ;;;; -;;;; Copyright (C) 2004 Free Software Foundation, Inc. +;;;; Copyright (C) 2004, 2005 Free Software Foundation, Inc. ;;;; ;;;; This program is free software; you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by @@ -17,7 +17,9 @@ ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330, ;;;; Boston, MA 02111-1307 USA -(use-modules (srfi srfi-39)) +(define-module (test-srfi-39) + #:use-module (test-suite lib) + #:use-module (srfi srfi-39)) (define a (make-parameter 3)) (define b (make-parameter 4))