From 92743bd4968786705f7e49ea9ea06cd3ff37e09a Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Tue, 27 Jan 2004 00:39:21 +0000 Subject: [PATCH] Added delete-all-versions workaround for openmcl --- ansi-tests/ansi-aux.lsp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ansi-tests/ansi-aux.lsp b/ansi-tests/ansi-aux.lsp index 1a609697..44440ce2 100644 --- a/ansi-tests/ansi-aux.lsp +++ b/ansi-tests/ansi-aux.lsp @@ -1366,7 +1366,7 @@ the condition to go uncaught if it cannot be classified." (unuse-package package using-package))) (delete-package package)))) -#-allegro +#-(or allegro openmcl) (defun delete-all-versions (pathspec) "Replace the versions field of the pathname specified by pathspec with :wild, and delete all the files this refers to." @@ -1374,13 +1374,14 @@ the condition to go uncaught if it cannot be classified." (truenames (directory wild-pathname))) (mapc #'delete-file truenames))) -(defconstant +fail-count-limit+ 20) - -;;; This is a hack to get around an ACL bug -#+allegro +;;; This is a hack to get around an ACL bug; OpenMCL also apparently +;;; needs it +#+(or allegro openmcl) (defun delete-all-versions (pathspec) (when (probe-file pathspec) (delete-file pathspec))) +(defconstant +fail-count-limit+ 20) + (defmacro test-with-package-iterator (package-list-expr &rest symbol-types) "Build an expression that tests the with-package-iterator form." (let ((name (gensym)) -- GitLab