tvl-depot/trivial-backtrace-test.asd
Vincent Ambo cc026178a9 Squashed 'third_party/lisp/trivial-backtrace/' content from commit 43ef7d9
git-subtree-dir: third_party/lisp/trivial-backtrace
git-subtree-split: 43ef7d947f4b4de767d0f91f28b50d9c03ad29d6
2020-01-17 17:53:27 +00:00

22 lines
616 B
Common Lisp

(defpackage #:trivial-backtrace-test-system (:use #:asdf #:cl))
(in-package #:trivial-backtrace-test-system)
(defsystem trivial-backtrace-test
:author "Gary Warren King <gwking@metabang.com>"
:maintainer "Gary Warren King <gwking@metabang.com>"
:licence "MIT Style License; see file COPYING for details"
:components ((:module
"setup"
:pathname "test/"
:components ((:file "packages")
(:file "test-setup"
:depends-on ("packages"))))
(:module
"test"
:pathname "test/"
:depends-on ("setup")
:components ((:file "tests"))))
:depends-on (:lift :trivial-backtrace))