fixed "|" :string and | :identifier confusion
This commit is contained in:
@@ -68,9 +68,11 @@
|
||||
(delete-file (probe-file (drop-file-type abs-path)))))
|
||||
successful))
|
||||
|
||||
(defun run-tests ()
|
||||
(defun run-tests (&optional (ignore-err nil))
|
||||
(loop for success?
|
||||
in (mapcar #'run-test
|
||||
in (mapcar (lambda (file) (if (not ignore-err)
|
||||
(run-test file)
|
||||
(ignore-errors (run-test file))))
|
||||
(remove-if-not (lambda (file)
|
||||
(string= "lorth" (pathname-type file)))
|
||||
(cl-fad:list-directory
|
||||
|
||||
Reference in New Issue
Block a user