Changeset 13935
- Timestamp:
- 05/14/12 08:15:53 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/package.lisp
r13607 r13935 4 4 (:export 5 5 #:run 6 #:do-matching #:run-matching7 6 #:do-test 8 7 #:do-tests 8 #:do-tests-matching 9 9 ;; previously in file-system-tests.lisp 10 10 #:pathnames-equal-p #:run-shell-command #:copy-file #:make-symbolic-link 11 11 #:touch #:make-temporary-directory #:delete-directory-and-files 12 ;;; Deprecated 13 #:do-matching #:run-matching 12 14 )) 13 15 (in-package #:abcl.test.lisp) … … 28 30 (defvar *last-run-matching* "url-pathname") 29 31 30 (defun do- matching (&optional (match *last-run-matching*))32 (defun do-tests-matching (&optional (match *last-run-matching*)) 31 33 "Run all tests in suite whose symbol contains MATCH in a case-insensitive manner." 32 34 (setf *last-run-matching* match) … … 43 45 44 46 ;;; Deprecated 45 (setf (symbol-function 'run-matching) #'do-matching) 47 (setf (symbol-function 'run-matching) #'do-tests-matching) 48 (setf (symbol-function 'do-matching) #'do-tests-matching) 46 49 47 50
Note: See TracChangeset
for help on using the changeset viewer.