source: trunk/abcl/test/lisp/abcl/abcl-test.lisp

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

Re-write the ABCL ASDF description using secondary systems

Future versions of ASDF will start complaining when multiple DEFSYSTEM
forms occupy a given file unit, but the systems named therein don't
use the "PRIMARYSECONDARY.." naming conventions.

(asdf:test-system :abcl)
Run the ABCL tests located under <file:test/lisp/abcl/>

(asdf:test-system :abcl/test/ansi/compiled)
Run the compiled version of the ANSI tests in <file:../ansi-test/>.

(asdf:test-system :abcl/test/ansi/interpreted)
Run the interpreted version of the ANSI tests in <file:../ansi-test/>.

(asdf:test-system :abcl/test/cl-bench)
Run the CL-BENCH test suite in <file:../cl-bench/>.

  • Property svn:eol-style set to native
File size: 138 bytes
Line 
1(require 'asdf)
2(handler-case 
3    (asdf:test-system :abcl/test/lisp :force t)
4  (t (e) (warn "Exiting after catching ~A" e)))
5(ext:exit)
Note: See TracBrowser for help on using the repository browser.