source: trunk/abcl/test/lisp/ansi/packages.lisp @ 13924

Last change on this file since 13924 was 13924, checked in by Mark Evenson, 12 years ago

ansi-tests: DO-TESTS-MATCHING will run all case-insensitive matching tests.

An ASDF load of ANSI-INTERPRETED now loads the interpreted tests into
memory via an :around specialization.

Changes in ABCL.TEST.ANSI (aka ANSI-TESTS):

DO-TESTS-MATCHING implemented (cribbed from ABCL-TEST-LISP).

Refactored DEFPACKAGE forms out of ABCL-ANSI-TESTS code, creating
abcl-ansi.lisp to hold all other forms.

Import symbols from REGRESSION-TEST where it makes sense (list could
probably be larger; why not just use the package?)

  • Property svn:eol-style set to native
File size: 310 bytes
Line 
1(defpackage #:abcl.test.ansi
2  (:use :cl :cl-user)
3  (:nicknames #:ansi-tests #:abcl-ansi-tests #:gcl-ansi)
4  (:export #:run 
5           #:verify-ansi-tests
6     #:load-tests
7     #:clean-tests
8           #:full-report
9     #:report #:parse)
10  (:import-from #:rt #:do-test #:do-test #:do-tests))
11
12
13
14       
15       
16
Note: See TracBrowser for help on using the repository browser.