Last change
on this file since 11530 was
11530,
checked in by Mark Evenson, 14 years ago
|
'abcl.test' now invokes both Java and Lisp based tests.
First stab at a collected test infrastructure for ABCL using ASDF packaging.
Currently, only the GCL ANSI-TEST suite really works: create a sibling
directory to the 'abcl' top-level directory called 'ansi-tests' to get
them to run automagically.
|
File size:
828 bytes
|
Line | |
---|
1 | (defpackage :cl-bench-asdf |
---|
2 | (:use :cl :asdf)) |
---|
3 | |
---|
4 | (in-package :cl-bench-asdf) |
---|
5 | |
---|
6 | (defsystem :cl-bench |
---|
7 | :documentation "http://www.chez.com/emarsden/downloads/cl-bench.tar.gz" |
---|
8 | :version "20081231a" |
---|
9 | :components |
---|
10 | ((:module cl-bench-source :pathname "" :components |
---|
11 | ((:file "defpackage") |
---|
12 | (:file "do-compilation-script") |
---|
13 | (:file "do-execute-script") |
---|
14 | (:file "do-interpret-script") |
---|
15 | (:file "generate") |
---|
16 | (:file "graph-report") |
---|
17 | (:file "pdf-report") |
---|
18 | (:file "report") |
---|
19 | (:file "support") |
---|
20 | (:file "tests"))))) |
---|
21 | |
---|
22 | (defmethod perform ((o test-op) (c (eql (find-system 'cl-bench)))) |
---|
23 | "Invoke tests with: (asdf:operate 'asdf:test-op :cl-bench)." |
---|
24 | (asdf:oos 'asdf:load-op :cl-bench) |
---|
25 | (load "sysdep/setup-ablisp.lisp") |
---|
26 | ; (load "do-compilation-script.lisp") |
---|
27 | (load "do-execute-script")) |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.