1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Move `guardians.test' to its own module.

* test-suite/tests/guardians.test: Add `define-module' clause.
This commit is contained in:
Ludovic Courtès 2009-02-28 16:59:05 +01:00
parent ad2c7c9388
commit 30a413ca8b

View file

@ -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
;;;