X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcheck.lisp;h=eba0adf9b9941c4eb6ee0b52e15d27b6105d4781;hb=6e4acc919aafc7e1a963bad1f1a218f8ea423394;hp=f5162f05aa066e4ae3573e6ce8d1deb784e614f5;hpb=1454981ac5f4f7ea8fe741a8125efbf0b09497ea;p=fiveam.git diff --git a/src/check.lisp b/src/check.lisp index f5162f0..eba0adf 100644 --- a/src/check.lisp +++ b/src/check.lisp @@ -77,9 +77,11 @@ when appropiate.")) initialize args MAKE-INSTANCE-ARGS and adds the resulting object to the list of test results." (with-run-state (result-list current-test) - (let ((result (apply #'make-instance result-type (append make-instance-args (list :test-case current-test))))) + (let ((result (apply #'make-instance result-type + (append make-instance-args (list :test-case current-test))))) (etypecase result (test-passed (format *test-dribble* ".")) + (unexpected-test-failure (format *test-dribble* "X")) (test-failure (format *test-dribble* "f")) (test-skipped (format *test-dribble* "s"))) (push result result-list))))