r4874: Auto commit for Debian build
[umlisp.git] / tests / parse.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          parse.lisp
6 ;;;; Purpose:       Parsing tests for UMLisp
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  May 2003
9 ;;;;
10 ;;;; $Id: parse.lisp,v 1.2 2003/05/08 01:28:30 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UMLisp, is
13 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
14 ;;;;
15 ;;;; UMLisp users are granted the rights to distribute and use this software
16 ;;;; as governed by the terms of the GNU General Public License.
17 ;;;; *************************************************************************
18
19 (in-package #:umlisp-tests)
20
21 (eval-when (:compile-toplevel :load-toplevel :execute)
22   (if (probe-file (umlisp::umls-pathname "MRFILES"))
23     (pushnew :umls-files cl:*features*)
24     (format t "~&Skipping tests based on UMLS distribution~%")))
25
26 (import '(umlisp::*umls-files* umlisp::*umls-cols*))
27
28 #+umls-files
29 (progn
30   (umlisp::ensure-init-umls)
31   (deftest uparse.1 (length *umls-files*) 52)
32   (deftest uparse.2 (length *umls-cols*) 327)
33   
34   ) ;; umls-files
35
36 #+umls-files
37 (setq cl:*features* (delete :umls-files cl:*features*))
38