From cb689d3fbcb3f0473f6c89545bd1603d3ecffe56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Thu, 8 Dec 2016 13:32:34 +0100 Subject: [PATCH] tests: be more windows-friendly (not aux) also cleanse unused clean symbol --- src/tests/normal-tests/compiler.lsp | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/tests/normal-tests/compiler.lsp b/src/tests/normal-tests/compiler.lsp index a86cba4c9..67f43041c 100644 --- a/src/tests/normal-tests/compiler.lsp +++ b/src/tests/normal-tests/compiler.lsp @@ -523,7 +523,7 @@ ;;; (ext:with-clean-symbols (foo) (test cmp.0025.paths - (let* ((output (compile-file-pathname "tmp/aux" :type :fasl)) + (let* ((output (compile-file-pathname "tmp/ecl-aux" :type :fasl)) #-ecl-bytecmp (h-file (compile-file-pathname output :type :h)) #-ecl-bytecmp @@ -1104,19 +1104,18 @@ ;;; and NaN float values (part of ieee floating point extensions). #+ieee-floating-point -(ext:with-clean-symbols (infty-test) - (test cmp.0047.infinity-test - (finishes - (compile nil - (lambda () - (> 0.0 ext:single-float-negative-infinity)))) - (is-true - (let ((ofile - (with-compiler ("aux-compiler-0048.infty-test.2.lsp" :load t) - '(defun doit () (> 0.0 ext:single-float-negative-infinity))))) - (delete-file "aux-compiler-0048.infty-test.2.lsp") - (delete-file ofile) - (doit))))) +(test cmp.0047.infinity-test + (finishes + (compile nil + (lambda () + (> 0.0 ext:single-float-negative-infinity)))) + (is-true + (let ((ofile + (with-compiler ("aux-compiler-0048.infty-test.2.lsp" :load t) + '(defun doit () (> 0.0 ext:single-float-negative-infinity))))) + (delete-file "aux-compiler-0048.infty-test.2.lsp") + (delete-file ofile) + (doit))))