~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to ansi-tests/rt-package.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;-*- Mode:     Lisp -*-
 
2
;;;; Author:   Paul Dietz
 
3
;;;; Created:  Tue Dec 17 21:10:53 2002
 
4
;;;; Contains: Package definition for RT
 
5
 
 
6
(eval-when
 
7
 (:execute :compile-toplevel :load-toplevel)
 
8
 (defpackage :regression-test
 
9
    (:use :cl)
 
10
    (:nicknames :rtest #-lispworks :rt)
 
11
    (:export
 
12
     #:*do-tests-when-defined*
 
13
     #:*compile-tests*
 
14
     #:*test*
 
15
     #:continue-testing
 
16
     #:deftest
 
17
     #:do-test
 
18
     #:do-tests
 
19
     #:get-test
 
20
     #:pending-tests
 
21
     #:rem-all-tests
 
22
     #:rem-test
 
23
     #:defnote
 
24
     #:my-aref
 
25
     #:*catch-errors*
 
26
     #:disable-note
 
27
     )))
 
28
 
 
29
(in-package :regression-test)