From 5b3b90a24f4e204658469eb5ab66a5fae238b9f3 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Mon, 17 Dec 2012 10:32:27 -0500 Subject: [PATCH] Fix test on ecl-bytecodes --- test/test-compile-file-failure.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-compile-file-failure.lisp b/test/test-compile-file-failure.lisp index 5149add0..83be5b7d 100644 --- a/test/test-compile-file-failure.lisp +++ b/test/test-compile-file-failure.lisp @@ -1,6 +1,6 @@ (eval-when (:compile-toplevel :load-toplevel :execute) ;; CLISP 2.48 has a bug that makes this test fail. Work around: #+(or clisp ecl) (when (and (eq asdf:*compile-file-failure-behaviour* :error) - #+ecl (equal (fasl-type) "fasc")) + #+ecl (equal (asdf::fasl-type) "fasc")) (error 'asdf:compile-error :operation "op" :component "comp")) (warn "Warning.")) -- GitLab