From 3bac539d6c3ef9c9fa8061da6890986db94e2b9b Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Sun, 5 Jul 2015 00:35:05 -0400 Subject: [PATCH] test-upgrade: invert test for valid lispworks upgrade. Oops. --- tools/test-upgrade.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-upgrade.lisp b/tools/test-upgrade.lisp index 48201f5d..37aa7bf6 100644 --- a/tools/test-upgrade.lisp +++ b/tools/test-upgrade.lisp @@ -123,7 +123,7 @@ Use at a given tag, put it under build/asdf-${tag}.lisp" ((:gcl) (version<= "3.1.2" tag)) ;; 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) (version<= "3.1.2" tag)) -- GitLab