Changeset 12615


Ignore:
Timestamp:
04/15/10 14:53:27 (13 years ago)
Author:
Mark Evenson
Message:

Tweaks to ABCL Lisp tests for convenience.

RUN-MATCHING saves last invocation parameter in *LAST-RUN-MATCHING*

Export symbols DO-TEST and DO-TESTS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/test/lisp/abcl/package.lisp

    r12402 r12615  
    33  (:nicknames "ABCL-TEST-LISP" "ABCL-TEST")
    44  (:export
    5    #:run #:run-matching))
     5   #:run #:run-matching
     6   #:do-test #:do-tests))
    67(in-package #:abcl.test.lisp)
    78
     
    1617    (do-tests)))
    1718
     19(defvar *last-run-matching* "url-pathname")
     20
    1821;;; 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)
    2024  (let* ((matching (string-upcase match))
    2125         (tests
Note: See TracChangeset for help on using the changeset viewer.