Skip to content
Snippets Groups Projects
Commit 44a52cb9 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Make it build and test correctly under ASDF2.

parent 0e4a1e28
No related branches found
No related tags found
No related merge requests found
;;; -*- Lisp -*- ;;; -*- Lisp -*-
(defsystem :inferior-shell-test (defsystem :inferior-shell-test
:depends-on (:inferior-shell :inferior-shell/test)) ;; adding inferior-shell *second* makes things work on asdf 1&2(!):
:depends-on (:inferior-shell/test :inferior-shell))
...@@ -20,7 +20,8 @@ ...@@ -20,7 +20,8 @@
:if-feature (:and :sbcl :sb-thread :unix))) :if-feature (:and :sbcl :sb-thread :unix)))
:in-order-to ((test-op (load-op inferior-shell/test))) :in-order-to ((test-op (load-op inferior-shell/test)))
:perform (test-op :after (o s) :perform (test-op :after (o s)
(symbol-call :inferior-shell-test :test-suite))) ;; ASDF2: can't use uiop:symbol-call
(funcall (find-symbol (string :test-suite) :inferior-shell-test))))
(defsystem :inferior-shell/test (defsystem :inferior-shell/test
:depends-on (:inferior-shell :hu.dwim.stefil) :depends-on (:inferior-shell :hu.dwim.stefil)
......
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