From: Henrik Hjelte Date: Wed, 31 Oct 2007 08:50:10 +0000 (+0100) Subject: depends-on with single symbol resolves dependencies ok X-Git-Url: http://repo.macrolet.net/gitweb/?p=fiveam.git;a=commitdiff_plain;h=aeda92bda135a87daff3b1267fb08c149df61040 depends-on with single symbol resolves dependencies ok --- diff --git a/src/classes.lisp b/src/classes.lisp index 8f11102..a0e8659 100644 --- a/src/classes.lisp +++ b/src/classes.lisp @@ -14,8 +14,8 @@ of this test. Either: T - this test (and all its dependencies, have passed. NIL - this test failed (either it failed or its dependecies weren't - met. :circular this test has a circular depenedency - and was skipped.") + met. :circular this test has a circular dependency + and was skipped. Or :depends-not-satisfied or :resolving") (profiling-info :accessor profiling-info :initform nil :documentation "An object representing how diff --git a/src/run.lisp b/src/run.lisp index c3038ef..bc36025 100644 --- a/src/run.lisp +++ b/src/run.lisp @@ -66,7 +66,7 @@ run.")) (:unknown (setf (status test) :resolving) (if (or (not (depends-on test)) - (resolve-dependencies (depends-on test))) + (eql t (resolve-dependencies (depends-on test)))) (progn (run-test-lambda test) (status test))