X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fparse.lisp;fp=tests%2Fparse.lisp;h=71a479b1a08d244185667ddaa2a933d57a35425a;hb=26b92c8df70bcd58358b343db835a599cdc56013;hp=e1dcd3013cbdba1828ea733cc15ee68120464aeb;hpb=f761dc1d39bb92917db53f935348f79e4db95e40;p=umlisp.git diff --git a/tests/parse.lisp b/tests/parse.lisp index e1dcd30..71a479b 100644 --- a/tests/parse.lisp +++ b/tests/parse.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: May 2003 ;;;; -;;;; $Id: parse.lisp,v 1.1 2003/05/07 23:06:44 kevin Exp $ +;;;; $Id: parse.lisp,v 1.2 2003/05/08 01:28:30 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -17,3 +17,22 @@ ;;;; ************************************************************************* (in-package #:umlisp-tests) + +(eval-when (:compile-toplevel :load-toplevel :execute) + (if (probe-file (umlisp::umls-pathname "MRFILES")) + (pushnew :umls-files cl:*features*) + (format t "~&Skipping tests based on UMLS distribution~%"))) + +(import '(umlisp::*umls-files* umlisp::*umls-cols*)) + +#+umls-files +(progn + (umlisp::ensure-init-umls) + (deftest uparse.1 (length *umls-files*) 52) + (deftest uparse.2 (length *umls-cols*) 327) + + ) ;; umls-files + +#+umls-files +(setq cl:*features* (delete :umls-files cl:*features*)) +