summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-02-28 16:59:05 +0100
committerLudovic Courtès <ludo@gnu.org>2009-03-08 21:56:06 +0100
commit7acc33d7f0ae774ca2b970053ed04a792cd83e33 (patch)
tree6813729316dfeda3467d13be085e252094603dd6
parent8321ed20f69b4c56cb680563160cd30ecac8f509 (diff)
downloadguile-7acc33d7f0ae774ca2b970053ed04a792cd83e33.tar.gz
Move `guardians.test' to its own module.
* test-suite/tests/guardians.test: Add `define-module' clause.
-rw-r--r--test-suite/tests/guardians.test9
1 files 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
;;;