Do not use html in RUN-TESTS-IN-HOST
authorDavid Vázquez <davazp@gmail.com>
Wed, 1 May 2013 21:25:46 +0000 (22:25 +0100)
committerDavid Vázquez <davazp@gmail.com>
Wed, 1 May 2013 21:25:46 +0000 (22:25 +0100)
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"))