From 69c76bfe0643d6e2c45ba522d81c89b5c4dd36b0 Mon Sep 17 00:00:00 2001 From: "Robert P. Goldman" <rpgoldman@sift.net> Date: Wed, 8 Apr 2015 21:32:07 -0500 Subject: [PATCH] Reorder the tasks for %test. Previously, the final task was building the docs. But this happens to generate a long mess of TeX outputs, which buries the results of the test scripts. So now we do the doc task first, then test-clean-load, then test-scripts. --- tools/test-scripts.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-scripts.lisp b/tools/test-scripts.lisp index ef6c08f1b..fbbbe4789 100644 --- a/tools/test-scripts.lisp +++ b/tools/test-scripts.lisp @@ -82,6 +82,6 @@ Ran ~D tests, ~D passed, ~D failed~ (deftestcmd %test (lisp test-scripts) "run all normal tests but upgrade tests Use the preferred lisp implementation" - (all-pass (test-scripts lisp test-scripts) (doc) (test-clean-load lisp))) + (all-pass (doc) (test-clean-load lisp) (test-scripts lisp test-scripts))) (defalias %t %test) -- GitLab