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

test-upgrade: invert test for valid lispworks upgrade. Oops.

parent 3828552f
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ Use at a given tag, put it under build/asdf-${tag}.lisp" ...@@ -123,7 +123,7 @@ Use at a given tag, put it under build/asdf-${tag}.lisp"
((:gcl) (version<= "3.1.2" tag)) ((:gcl) (version<= "3.1.2" tag))
;; LispWorks is fine, but ASDF 3.0.3 has a bug and can't be loaded. ;; LispWorks is fine, but ASDF 3.0.3 has a bug and can't be loaded.
((:lispworks) (equal "3.0.3" tag)) ((:lispworks) (not (equal "3.0.3" tag)))
;; MKCL is only supported starting with specific versions 2.24, 2.26.x, 3.0.3.0.x, so skip. ;; MKCL is only supported starting with specific versions 2.24, 2.26.x, 3.0.3.0.x, so skip.
((:mkcl) (version<= "3.1.2" tag)) ((:mkcl) (version<= "3.1.2" tag))
......
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