<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal"><p dir="auto">Is this system somewhere available (e.g., GitHub) so we could try to replicate?</p>
<p dir="auto">For that matter, could we break on signals and get a backtrace?</p>
<p dir="auto">thanks,<br>
r</p>
<br><p dir="auto">On 18 Oct 2017, at 8:25, Chream iz wrote:</p>
</div>
<blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><div id="4C3C8F41-A46B-4456-B693-1B5AA14E2B6F"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">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?</div><div class=""><br class=""></div><div class=""><div class="">Summary:</div><div class="">  All 0 files passed.</div><div class="">WARNING:</div><div class="">   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:TEST-OP</div><div class="">                                                     "iparse"), but dependency (ASDF/LISP-ACTION:TEST-OP</div><div class="">                                                                                "iparse-test") wasn't done yet!</div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><b class="">system asd:</b></div><div class=""><br class=""></div><div class=""><div class="">#|</div><div class="">  This file is a part of iparse project.</div><div class="">  Copyright (c) 2017 Christopher Eames (chream) (<a href="mailto:chream@gmx.com" class="">chream@gmx.com</a>)</div><div class="">|#</div><div class=""><br class=""></div><div class="">#|</div><div class="">  Author: Christopher Eames (chream) (<a href="mailto:chream@gmx.com" class="">chream@gmx.com</a>)</div><div class="">|#</div><div class=""><br class=""></div><div class="">(in-package :cl-user)</div><div class="">(defpackage iparse-asd</div><div class="">  (:use :cl :asdf))</div><div class="">(in-package :iparse-asd)</div><div class=""><br class=""></div><div class="">(defsystem iparse</div><div class="">  :version "0.1.1"</div><div class="">  :class :package-inferred-system</div><div class="">  :author "Christopher Eames (chream)"</div><div class="">  :license "MIT"</div><div class="">  :depends-on ("iparse/src/iparse")</div><div class="">  :description "A small parsing and data structure library."</div><div class="">  :long-description</div><div class="">  #.(with-open-file (stream (merge-pathnames</div><div class="">                             #p"README.markdown"</div><div class="">                             (or *load-pathname* *compile-file-pathname*))</div><div class="">                            :if-does-not-exist nil</div><div class="">                            :direction :input)</div><div class="">      (when stream</div><div class="">        (let ((seq (make-array (file-length stream)</div><div class="">                               :element-type 'character</div><div class="">                               :fill-pointer t)))</div><div class="">          (setf (fill-pointer seq) (read-sequence seq stream))</div><div class="">          seq)))</div><div class="">  :in-order-to ((test-op (test-op iparse-test))))</div><div class=""><br class=""></div><div class="">(register-system-packages</div><div class=""> "closer-mop"</div><div class=""> '(:c2mop :closer-common-lisp :c2cl :closer-common-lisp-user :c2cl-user))</div><div class="">(register-system-packages</div><div class=""> "lil"</div><div class=""> '(:lil/core :interface :pure :smltateful :classy :posh :lil/test))</div><div class=""><br class=""></div><div class="">(register-system-packages "iparse/src/all" '(:iparse.dev))</div><div class="">(register-system-packages "iparse/src/formats" '(:iparse.formats))</div><div class="">(register-system-packages "iparse/src/utils" '(:iparse.utils))</div><div class="">(register-system-packages "iparse/src/iparse" '(:iparse))</div><div class="">(register-system-packages "iparse/src/types" '(:iparse.types))</div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><b class="">Test system asd:</b></div><div class=""><b class=""><br class=""></b></div><div class=""><div class="">#|</div><div class="">  This file is a part of iparse project.</div><div class="">  Copyright (c) 2017 Christopher Eames (chream) (<a href="mailto:chream@gmx.com" class="">chream@gmx.com</a>)</div><div class="">|#</div><div class=""><br class=""></div><div class="">(in-package :cl-user)</div><div class="">(defpackage iparse-test-asd</div><div class="">  (:use :cl :asdf))</div><div class="">(in-package :iparse-test-asd)</div><div class=""><br class=""></div><div class="">(defsystem iparse-test</div><div class="">  :author "Christopher Eames (chream)"</div><div class="">  :license ""</div><div class="">  :depends-on (:iparse</div><div class="">               :prove)</div><div class="">  :components ((:module "t"</div><div class="">                :serial t</div><div class="">                :components</div><div class="">                ((:file "utils")</div><div class="">                 (:test-file "utils-test")</div><div class="">                 (:test-file "read-single-test-byte")</div><div class="">                 (:test-file "read-single-test-sequence")</div><div class="">                 (:test-file "read-single-test-composite")</div><div class="">                 (:test-file "read-single-test-class")</div><div class="">                 (:test-file "byte")</div><div class="">                 (:test-file "macro")</div><div class="">                 (:module "new"</div><div class="">                  :serial t</div><div class="">                  :components</div><div class="">                  ((:test-file "basic-tests"))))))</div><div class="">  :description "Test system for iparse"</div><div class=""><br class=""></div><div class="">  :defsystem-depends-on (:prove-asdf)</div><div class="">  :perform (test-op :after (op c)</div><div class="">                    (funcall (intern #.(string :run-test-system) :prove-asdf) c)</div><div class="">                    (asdf:clear-system c)))</div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Christopher</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On 18 Oct 2017, at 15:05, Faré <<a href="mailto:fahree@gmail.com" class="">fahree@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">Can you anonymize it and send it? Or extract a minimal failure case? I<br class="">can't reproduce at home, nor imagine what could be happening.<br class=""><br class="">Anton, could you test the syntax-control branch with cl-test-grid, and<br class="">grep the results for expansions of the format string "Computing<br class="">just-done stamp in plan ~S for action ~S, but dependency ~S wasn't<br class="">done yet!" ?<br class=""><br class="">—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• <a href="http://fare.tunes.org" class="">http://fare.tunes.org</a><br class="">Mathematics is as little a science as grammar is a language. — Ernst Mayr<br class=""><br class=""><br class="">On Wed, Oct 18, 2017, 08:11 Stas Boukarev <<a href="mailto:stassats@gmail.com" class="">stassats@gmail.com</a>> wrote:<br class=""><blockquote type="cite" class=""><br class="">It's a work file, can't publish it. But it's just a defsystem with depends-on and components.<br class=""><br class="">On Wed, Oct 18, 2017 at 2:46 PM Faré <<a href="mailto:fahree@gmail.com" class="">fahree@gmail.com</a>> wrote:<br class=""><blockquote type="cite" class=""><br class="">It's hard to tell without seeing the .asd file. The message says that<br class="">you completed the load-op of the system, but somehow you never did the<br class="">define-op of the system (the new action that tracks the loading of<br class="">.asd files so that defsystem-depends-on can be properly staged).<br class=""><br class="">Can you tell us more about the "non-complicated" features that you<br class="">use? Do you follow the "best practices" document?<br class=""><a href="https://github.com/fare/asdf/blob/master/doc/best_practices.md" class="">https://github.com/fare/asdf/blob/master/doc/best_practices.md</a><br class=""><br class="">—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• http://fare.tunes.org<br class="">Don't forget your daily prayer to Baah-kup,<br class="">the God of data storage and recovery!<br class=""><br class=""><br class=""><br class="">On Wed, Oct 18, 2017 at 7:35 AM, Stas Boukarev <stassats@gmail.com> wrote:<br class=""><blockquote type="cite" class="">More new warnings from ASDF 3.3, this time I have no idea what it means.<br class=""><br class="">WARNING:<br class="">   Computing just-done stamp in plan NIL for action<br class="">(ASDF/LISP-ACTION:LOAD-OP<br class="">                                                     "system"), but<br class="">dependency (ASDF/FIND-SYSTEM:DEFINE-OP<br class=""><br class="">"system") wasn't done yet!<br class=""><br class="">The .asd file is not public, but it looks perfectly normal without using any<br class="">complicated features.<br class=""></blockquote></blockquote></blockquote><br class=""></div></div></blockquote></div><br class=""></div></div></blockquote>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px">
</blockquote></div>
</div>
</body>
</html>