Update test to work around SBCL cleverness (thanks to Patrick Stein)
[trivial-backtrace.git] / trivial-backtrace-test.asd
blobcb088434a2c120d88d1a2d4c23949435e41fdd2b
1 (defpackage #:trivial-backtrace-test-system (:use #:asdf #:cl))
2 (in-package #:trivial-backtrace-test-system)
4 (defsystem trivial-backtrace-test
5   :author "Gary Warren King <gwking@metabang.com>"
6   :maintainer "Gary Warren King <gwking@metabang.com>"
7   :licence "MIT Style License; see file COPYING for details"
8   :components ((:module 
9                 "setup"
10                 :pathname "test/"
11                 :components ((:file "packages")
12                              (:file "test-setup"
13                                     :depends-on ("packages"))))
14                (:module 
15                 "test"
16                 :pathname "test/"
17                 :depends-on ("setup")
18                 :components ((:file "tests"))))  
19   :depends-on (:lift :trivial-backtrace))