source: branches/0.15.x/abcl/test/lisp/ansi/ansi-tests-interpreted.lisp

Last change on this file was 11599, checked in by Mark Evenson, 17 years ago

Use HANDLER-CASE for ANSI tests to quit invoking Lisp if an error in generated.

Further incremental work on ABCL-TEST-LISP (aka the internal ABCL
tests) necessitated by the fact that both it and the ANSI tests use
the REGRESSION-TEST framework which doesn't work well in the same Lisp
instances. Trying to repackage this correctly, but it needs more work.

  • Property svn:eol-style set to native
File size: 217 bytes
Line 
1(require 'asdf)
2(handler-case 
3    (progn
4      (asdf:oos 'asdf:load-op :abcl :force t)
5      (asdf:oos 'asdf:test-op :ansi-interpreted :force t))
6  (t (e) (warn "Exiting after catching ~A" e)))
7(ext:exit)
8 
9     
10
Note: See TracBrowser for help on using the repository browser.