Skip to content
Snippets Groups Projects
Commit 2d58c7a5 authored by Attila Lendvai's avatar Attila Lendvai
Browse files

Modernize .asd: get rid of operation-done-p.

parent 38e35b4f
No related branches found
No related tags found
No related merge requests found
......@@ -5,12 +5,8 @@
:depends-on (:alexandria #+sbcl :sb-rt #-sbcl :rt)
:components ((:file "tests")))
(defmethod operation-done-p
((o test-op) (c (eql (find-system :alexandria-tests))))
nil)
(defmethod perform ((o test-op) (c (eql (find-system :alexandria-tests))))
(flet ((run-tests (&rest args)
(apply (intern (string '#:run-tests) '#:alexandria-tests) args)))
(run-tests :compiled nil)
(run-tests :compiled t)))
\ No newline at end of file
(run-tests :compiled t)))
......@@ -65,4 +65,4 @@ the following constraints:
(defmethod perform ((o test-op) (c (eql (find-system :alexandria))))
(operate 'load-op :alexandria-tests)
(operate 'test-op :alexandria-tests))
\ No newline at end of file
(operate 'test-op :alexandria-tests))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment