From 2a8b4f7fcef456eb85d6bf6623bc99bdc71041ed Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Tue, 9 Jun 2015 00:24:11 -0400 Subject: [PATCH] LispWorks: skip upgrade test for asdf 3.0.3 --- tools/test-upgrade.lisp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/test-upgrade.lisp b/tools/test-upgrade.lisp index d6959a68..5cd20ad3 100644 --- a/tools/test-upgrade.lisp +++ b/tools/test-upgrade.lisp @@ -121,6 +121,9 @@ Use at a given tag, put it under build/asdf-${tag}.lisp" ;; GCL 2.7.0 from late November 2013 is required, with ASDF 3.1.2 ((: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)) + ;; 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