Changeset 12615
- Timestamp:
- 04/15/10 14:53:27 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/package.lisp
r12402 r12615 3 3 (:nicknames "ABCL-TEST-LISP" "ABCL-TEST") 4 4 (:export 5 #:run #:run-matching)) 5 #:run #:run-matching 6 #:do-test #:do-tests)) 6 7 (in-package #:abcl.test.lisp) 7 8 … … 16 17 (do-tests))) 17 18 19 (defvar *last-run-matching* "url-pathname") 20 18 21 ;;; XXX move this into test-utilities.lisp? 19 (defun run-matching (&optional (match "jar-file.")) 22 (defun run-matching (&optional (match *last-run-matching*)) 23 (setf *last-run-matching* match) 20 24 (let* ((matching (string-upcase match)) 21 25 (tests
Note: See TracChangeset
for help on using the changeset viewer.