Skip to content
Snippets Groups Projects
Commit 4c45478b authored by Gary King's avatar Gary King
Browse files

Add method for operation-done-p (test-op system) that always returns nil

(after all, testing is never really done). Thanks to Luis Oliveira.
parent 0298e5e0
No related branches found
No related tags found
No related merge requests found
;;; This is asdf: Another System Definition Facility. $Revision: 1.125 $ ;;; This is asdf: Another System Definition Facility. $Revision: 1.126 $
;;; ;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to ;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>. But note first that the canonical ;;; <cclan-list@lists.sf.net>. But note first that the canonical
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
(in-package #:asdf) (in-package #:asdf)
(defvar *asdf-revision* (let* ((v "$Revision: 1.125 $") (defvar *asdf-revision* (let* ((v "$Revision: 1.126 $")
(colon (or (position #\: v) -1)) (colon (or (position #\: v) -1))
(dot (position #\. v))) (dot (position #\. v)))
(and v colon dot (and v colon dot
...@@ -899,6 +899,10 @@ the head of the tree")) ...@@ -899,6 +899,10 @@ the head of the tree"))
(cons (list 'compile-op (component-name c)) (cons (list 'compile-op (component-name c))
(call-next-method))) (call-next-method)))
(defmethod operation-done-p ((operation test-op) (c system))
"Testing a system is _never_ done."
nil)
;;; load-source-op ;;; load-source-op
(defclass load-source-op (basic-load-op) ()) (defclass load-source-op (basic-load-op) ())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment