Skip to content
Snippets Groups Projects
Commit 326779fd authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Break test if lisp-invocation library is not present.

Previously, we would simply skip this test if the lisp-invocation
library was missing, or not sufficiently up-to-date.  Now that the
lisp-invocation library is present as a git submodule, we treat this as
an error condition, instead.
parent ddca83ad
No related branches found
No related tags found
No related merge requests found
......@@ -25,10 +25,10 @@
;; try harder by enabling the user's source-registry
(initialize-source-registry ""))
(unless (find-system :lisp-invocation nil)
(leave-test "Couldn't find lisp-invocation. Skipping the rest of the test." 0))
(leave-test "Couldn't find lisp-invocation. Probably your ASDF ext/ directory needs submodule update." 1))
(load-system :lisp-invocation)
(unless (version-satisfies (find-system :lisp-invocation) "1.0.1")
(leave-test "Lisp-invocation library isn't new enough to test successfully. Skipping test-program." 0))
(leave-test "Lisp-invocation library isn't new enough to test successfully. Probably your ASDF ext/ directory needs submodule update." 1))
;; Disable any user source registry.
(initialize-source-registry `(:source-registry :ignore-inherited-configuration))
......
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