source: tags/1.5.0/contrib/abcl-introspect/abcl-introspect-tests.asd

Last change on this file was 15013, checked in by Mark Evenson, 7 years ago

Restore the ability SYSTEM:CHOOSE-ASSEMBLER to use Objectweb

The Objectweb disassembler has been moved into the ABCL-INTROSPECT
contrib where it can be rationally installed via ABCL-ASDF
encapsulation of Maven artifacts.

To enable the Objectweb disassembler use

(require :abcl-contrib)
(require :objectweb)

File size: 536 bytes
Line 
1;;;; -*- Mode: LISP -*-
2
3(defsystem abcl-introspect-tests
4  :author "Mark Evenson"
5  :long-description "<urn:abcl.org/release/1.5.0/contrib/abcl-introspect/test#>"
6  :version "2.0.0"
7  :defsystem-depends-on (prove-asdf)
8  :depends-on (abcl-asdf ;; our dependencies
9               prove)
10  :components ((:module tests
11                        :pathname "t/"
12                        :components ((:test-file "disassemble"))))
13  :perform (asdf:test-op (op c)
14                         (uiop:symbol-call :prove-asdf 'run-test-system c)))
15
16
17
18
Note: See TracBrowser for help on using the repository browser.