depends-on with single symbol resolves dependencies ok
authorHenrik Hjelte <henrik@evahjelte.com>
Wed, 31 Oct 2007 08:50:10 +0000 (09:50 +0100)
committerHenrik Hjelte <henrik@evahjelte.com>
Wed, 31 Oct 2007 08:50:10 +0000 (09:50 +0100)
src/classes.lisp
src/run.lisp

index 8f11102..a0e8659 100644 (file)
@@ -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
index c3038ef..bc36025 100644 (file)
@@ -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))