Changeset 14249 for trunk/abcl/test/lisp/ansi/abcl-ansi.lisp
- Timestamp:
- 11/16/12 13:40:47 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/ansi/abcl-ansi.lisp
r14180 r14249 15 15 Possibly running the compiled version of the tests if COMPILE-TESTS is non-NIL." 16 16 (verify-ansi-tests) 17 (mapcar (lambda (result) 18 (when (second result) 19 (format t "Removed ~A.~&" (first result)))) 20 (clean-tests)) 17 21 (let* ((ansi-tests-directory 18 22 *ansi-tests-directory*) … … 58 62 (verify-ansi-tests) 59 63 60 (mapcar #'delete-file 64 (mapcar (lambda (p) 65 (when (probe-file p) 66 (list p (delete-file p)))) 61 67 (append (directory (format nil "~A/*.cls" *ansi-tests-directory*)) 62 68 (directory (format nil "~A/*.abcl" *ansi-tests-directory*))
Note: See TracChangeset
for help on using the changeset viewer.