From aeda92bda135a87daff3b1267fb08c149df61040 Mon Sep 17 00:00:00 2001 From: Henrik Hjelte Date: Wed, 31 Oct 2007 09:50:10 +0100 Subject: [PATCH] depends-on with single symbol resolves dependencies ok --- src/classes.lisp | 4 ++-- src/run.lisp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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)) -- 1.7.10.4