Hi, I am also getting this error when trying to run (asdf:test-system ....). It is also not finding the test-files but that might be an but in the prove package?
Summary:
All 0 files passed.
WARNING:
Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:TEST-OP
"iparse"), but dependency (ASDF/LISP-ACTION:TEST-OP
"iparse-test") wasn't done yet!
#|
This file is a part of iparse project.
|#
#|
|#
(in-package :cl-user)
(defpackage iparse-asd
(:use :cl :asdf))
(in-package :iparse-asd)
(defsystem iparse
:version "0.1.1"
:class :package-inferred-system
:author "Christopher Eames (chream)"
:license "MIT"
:depends-on ("iparse/src/iparse")
:description "A small parsing and data structure library."
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op iparse-test))))
(register-system-packages
"closer-mop"
'(:c2mop :closer-common-lisp :c2cl :closer-common-lisp-user :c2cl-user))
(register-system-packages
"lil"
'(:lil/core :interface :pure :smltateful :classy :posh :lil/test))
(register-system-packages "iparse/src/all" '(:iparse.dev))
(register-system-packages "iparse/src/formats" '(:iparse.formats))
(register-system-packages "iparse/src/utils" '(:iparse.utils))
(register-system-packages "iparse/src/iparse" '(:iparse))
(register-system-packages "iparse/src/types" '(:iparse.types))
#|
This file is a part of iparse project.
|#
(in-package :cl-user)
(defpackage iparse-test-asd
(:use :cl :asdf))
(in-package :iparse-test-asd)
(defsystem iparse-test
:author "Christopher Eames (chream)"
:license ""
:depends-on (:iparse
:prove)
:components ((:module "t"
:serial t
:components
((:file "utils")
(:test-file "utils-test")
(:test-file "read-single-test-byte")
(:test-file "read-single-test-sequence")
(:test-file "read-single-test-composite")
(:test-file "read-single-test-class")
(:test-file "byte")
(:test-file "macro")
(:module "new"
:serial t
:components
((:test-file "basic-tests"))))))
:description "Test system for iparse"
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))