Update test to work around SBCL cleverness (thanks to Patrick Stein)
[trivial-backtrace.git] / trivial-backtrace.asd
blob843b6cc39a3cdc590abf7348288cc3d6a17ffad9
1 (in-package #:common-lisp-user)
3 (defpackage #:trivial-backtrace-system (:use #:asdf #:cl))
4 (in-package #:trivial-backtrace-system)
6 (defsystem trivial-backtrace
7   :version "1.1.0"
8   :author "Gary Warren King <gwking@metabang.com> and contributors"
9   :maintainer "Gary Warren King <gwking@metabang.com> and contributors"
10   :licence "MIT Style license "
11   :description "trivial-backtrace"
12   :depends-on ()
13   :components
14   ((:static-file "COPYING")
15    (:module 
16     "setup"
17     :pathname "dev/"
18     :components ((:file "packages")))
19    (:module 
20     "dev"
21     :depends-on ("setup")
22     :components ((:file "utilities")
23                  (:file "backtrace")
24                  (:file "map-backtrace")
25                  (:file "fallback" :depends-on ("backtrace" "map-backtrace")))))
26   :in-order-to ((test-op (load-op trivial-backtrace-test)))
27   :perform (test-op :after (op c)
28                     (funcall
29                      (intern (symbol-name '#:run-tests) :lift)
30                      :config :generic)))
32 (defmethod operation-done-p 
33            ((o test-op)
34             (c (eql (find-system 'trivial-backtrace))))
35   (values nil))