From d2991b3258d6b18f3b4c57d2ab7abd501e629f1c Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <fare@tunes.org> Date: Mon, 15 Mar 2010 21:22:41 -0400 Subject: [PATCH] Avoid name clash in FASLs for different implementations. Fix ECL compilation workaround. --- test/compile-asdf.lisp | 14 ++++++-------- test/script-support.lisp | 17 ++++++++++++++++- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/test/compile-asdf.lisp b/test/compile-asdf.lisp index 0818e32b..86e96e96 100644 --- a/test/compile-asdf.lisp +++ b/test/compile-asdf.lisp @@ -20,17 +20,15 @@ (compile-file *asdf-lisp* :output-file tmp)) (declare (ignore result)) (cond + #-ecl (warnings-p - ;;; ECL gives warnings that it shouldn't! - #+ecl (leave-lisp "ASDF compiled with warnings. Please fix ECL." 0) - #-ecl (leave-lisp "Testsuite failed: ASDF compiled with warnings" 1)) (errors-p (leave-lisp "Testsuite failed: ASDF compiled with ERRORS" 2)) (t - #+clisp ;; But for a bug in CLISP 2.48, we should use :if-exists :overwrite and be atomic - (posix:copy-file tmp *asdf-fasl* :method :rename) - #-clisp - (rename-file tmp *asdf-fasl* - #+clozure :if-exists #+clozure :rename-and-delete) + #+ecl + (when warnings-p + (format t "~&ASDF compiled with warnings. Please fix ECL.~%")) + (ignore-errors (delete-file *asdf-fasl*)) + (rename-file tmp *asdf-fasl*) (leave-lisp "ASDF compiled cleanly" 0))))))) diff --git a/test/script-support.lisp b/test/script-support.lisp index 6759a67f..1c368903 100644 --- a/test/script-support.lisp +++ b/test/script-support.lisp @@ -11,8 +11,23 @@ (defvar *asdf-fasl* (compile-file-pathname (merge-pathnames - (make-pathname :directory '(:relative "tmp") :defaults *asdf-lisp*) + (make-pathname :directory '(:relative "tmp") + :name (format nil "asdf-~(~A~)" + (or #+allegro (format nil "~Alisp" excl:*current-case-mode*) + #+armedbear :abcl + #+clisp :clisp + #+clozure :ccl + #+cmu :cmucl + #+corman :cormanlisp + #+digitool :mcl + #+ecl :ecl + #+gcl :gcl + #+lispworks :lispworks + #+sbcl :sbcl + #+scl scl)) + :defaults *asdf-lisp*) *asdf-lisp*))) + (defun load-asdf () (load *asdf-fasl*)) -- GitLab