Do not use html in RUN-TESTS-IN-HOST
[jscl.git] / jscl.lisp
index 86e27a5..c1a8658 100644 (file)
--- a/jscl.lisp
+++ b/jscl.lisp
@@ -90,7 +90,8 @@
 ;;; Run the tests in the host Lisp implementation. It is a quick way
 ;;; to improve the level of trust of the tests.
 (defun run-tests-in-host ()
-  (dolist (input (append (directory "tests.lisp")
-                         (directory "tests/*.lisp")
-                         (directory "tests-report.lisp")))
-    (load input)))
+  (load "tests.lisp")
+  (let ((*use-html-output-p* nil))
+    (dolist (input (directory "tests/*.lisp"))
+      (load input)))
+  (load "tests-report.lisp"))