From 30a413ca8bb88d824dffa522e8dabe7154d4b886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 28 Feb 2009 16:59:05 +0100 Subject: [PATCH] Move `guardians.test' to its own module. * test-suite/tests/guardians.test: Add `define-module' clause. --- test-suite/tests/guardians.test | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test-suite/tests/guardians.test b/test-suite/tests/guardians.test index 15f67e609..d60f638b7 100644 --- a/test-suite/tests/guardians.test +++ b/test-suite/tests/guardians.test @@ -25,11 +25,12 @@ ;;; they explicitly invoke GC --- in other words, they assume that GC ;;; won't happen too often. -(use-modules (test-suite lib) - (ice-9 documentation) - (ice-9 weak-vector)) - +(define-module (test-guardians) + :use-module (test-suite lib) + :use-module (ice-9 documentation) + :use-module (ice-9 weak-vector)) + ;;; ;;; miscellaneous ;;;