diff --git a/ansi-tests/doit.lsp b/ansi-tests/doit.lsp index 62db62e74b48ad946de25e8724303941a5dbc3ff..3982aa243396bc632f5fdebdaf830d0e53e4aed5 100644 --- a/ansi-tests/doit.lsp +++ b/ansi-tests/doit.lsp @@ -4,9 +4,16 @@ ;;; with arbitrary legal garbage. ;; (pushnew :ansi-tests-strict-initial-element *features*) -#+allegro (run-shell-command "rm -f *.fasl") #+allegro (setq *enclose-printer-errors* nil) -#+cmu (run-program "rm -f *.x86f") + +;;; Remove compiled files +(let* ((fn (compile-file-pathname "doit.lsp")) + (type (pathname-type fn)) + (dir-pathname (make-pathname :name :wild :type type)) + (files (directory dir-pathname))) + (assert type) + (assert (not (string-equal type "lsp"))) + (mapc #'delete-file files)) (load "gclload1.lsp") (load "gclload2.lsp") diff --git a/ansi-tests/gclload.lsp b/ansi-tests/gclload.lsp index 40b7158d2f5127fdec8b395ed7400c03f794a6b5..087a2f18dd7bc21f17d7018c0ea1eea856249175 100644 --- a/ansi-tests/gclload.lsp +++ b/ansi-tests/gclload.lsp @@ -4,9 +4,16 @@ ;;; with arbitrary legal garbage. ;; (pushnew :ansi-tests-strict-initial-element *features*) -#+allegro (run-shell-command "rm -f *.fasl") #+allegro (setq *enclose-printer-errors* nil) -#+cmu (run-program "rm" '("-f" "*.x86f" "*.sparcf" "*.ppcf")) + +;;; Remove compiled files +(let* ((fn (compile-file-pathname "doit.lsp")) + (type (pathname-type fn)) + (dir-pathname (make-pathname :name :wild :type type)) + (files (directory dir-pathname))) + (assert type) + (assert (not (string-equal type "lsp"))) + (mapc #'delete-file files)) (load "gclload1.lsp") (load "gclload2.lsp") @@ -20,4 +27,10 @@ (rt:disable-note :assume-no-gray-streams)) (in-package :cl-test) + +;;; These two tests will misbehave if the tests are being +;;; invoked from a file that is being loaded, so remove them +(when *load-pathname* + (mapc #'regression-test:rem-test '(load-pathname.1 load-truename.1))) + (time (regression-test:do-tests))