From 7d1e3fdd662a7536c54e4587129889b407860496 Mon Sep 17 00:00:00 2001 From: "Robert P. Goldman" <rpgoldman@sift.net> Date: Mon, 15 Aug 2016 14:10:00 -0500 Subject: [PATCH] Change COMPILE-ASDF-SCRIPT to default to verbose. Previously, if the tests failed because of unexpected warnings, the WITH-ASDF-CONDITIONS macro would swallow the warning you needed to fix. --- test/script-support.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/script-support.lisp b/test/script-support.lisp index 6b9f344a5..5da26d5d3 100644 --- a/test/script-support.lisp +++ b/test/script-support.lisp @@ -509,7 +509,7 @@ is bound, write a message and exit on an error. If (defun compile-asdf-script () (with-test () - (ecase (with-asdf-conditions () (maybe-compile-asdf)) + (ecase (with-asdf-conditions (t) (maybe-compile-asdf)) (:not-found (leave-test "Testsuite failed: unable to find ASDF source" 3)) (:previously-compiled -- GitLab