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

I had put the operation-done-p patch in the wrong place... ack.

parent 43dec17f
No related branches found
No related tags found
No related merge requests found
;;; This is asdf: Another System Definition Facility. $Revision: 1.126 $
;;; This is asdf: Another System Definition Facility. $Revision: 1.127 $
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>. But note first that the canonical
......@@ -119,7 +119,7 @@
(in-package #:asdf)
(defvar *asdf-revision* (let* ((v "$Revision: 1.126 $")
(defvar *asdf-revision* (let* ((v "$Revision: 1.127 $")
(colon (or (position #\: v) -1))
(dot (position #\. v)))
(and v colon dot
......@@ -899,10 +899,6 @@ the head of the tree"))
(cons (list 'compile-op (component-name c))
(call-next-method)))
(defmethod operation-done-p ((operation test-op) (c system))
"Testing a system is _never_ done."
nil)
;;; load-source-op
(defclass load-source-op (basic-load-op) ())
......@@ -940,6 +936,10 @@ the head of the tree"))
(defmethod perform ((operation test-op) (c component))
nil)
(defmethod operation-done-p ((operation test-op) (c system))
"Testing a system is _never_ done."
nil)
(defgeneric load-preferences (system operation)
(:documentation
"Deprecated - will be removed August 2008
......
......@@ -13,7 +13,9 @@
(asdf:oos 'asdf:load-op 'test3)
(asdf:missing-dependency (c)
(format t "first test failed as expected: - ~%~A~%" c))
(:no-error (c) (error "should have failed, oops")))
(:no-error (c)
(declare (ignore c))
(error "should have failed, oops")))
(pushnew :f1 *features*)
(asdf:oos 'asdf:load-op 'test3)
(assert (probe-file (compile-file-pathname "file1")))
......
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