diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-02-28 16:59:05 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-02-28 16:59:05 +0100 |
commit | 1eefa363bd7f0db07a907c773c890b78ff6415a9 (patch) | |
tree | 71f2cd2b032a0824f8e86dee643b673cb943d232 | |
parent | 6a7489ace3f07a8d190110cd1244963526c65729 (diff) | |
download | guile-1eefa363bd7f0db07a907c773c890b78ff6415a9.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.test | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test-suite/tests/guardians.test b/test-suite/tests/guardians.test index 756747fe6..8e72d4106 100644 --- a/test-suite/tests/guardians.test +++ b/test-suite/tests/guardians.test @@ -35,11 +35,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 ;;; |