1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

Enclose `regexp.test' in a module.

* test-suite/tests/regexp.test: Add `define-module' clause.
This commit is contained in:
Ludovic Courtès 2008-09-25 21:36:14 +02:00
parent afb28ce860
commit 097158c936

View file

@ -18,9 +18,11 @@
;;;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;;;; Boston, MA 02110-1301 USA
(use-modules (test-suite lib)
(ice-9 regex))
(define-module (test-suite test-regexp)
#:use-module (test-suite lib)
#:use-module (ice-9 regex))
;;; Run a regexp-substitute or regexp-substitute/global test, once
;;; providing a real port and once providing #f, requesting direct
;;; string output.