From: Kevin M. Rosenberg Date: Tue, 29 Apr 2003 01:55:26 +0000 (+0000) Subject: r4675: Auto commit for Debian build X-Git-Tag: v1.96~255 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=fff759278b0089e16c650fe7023b41eeafee30e2 r4675: Auto commit for Debian build --- diff --git a/tests.lisp b/tests.lisp index 56eb2a5..a84404c 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.4 2003/04/29 00:49:09 kevin Exp $ +;;;; $Id: tests.lisp,v 1.5 2003/04/29 01:55:26 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -20,10 +20,6 @@ (rem-all-tests) -(when (find-package '#:kmr-mop) - (pushnew :kmrtest-mop cl:*features*)) - -(deftest p1 t t) (deftest str.0 (substitute-chars-strings "" nil) "") (deftest str.1 (substitute-chars-strings "abcd" nil) "abcd") @@ -49,6 +45,10 @@ (deftest str.16 (nstring-trim-last-character "a") "") (deftest str.17 (nstring-trim-last-character "ab") "a") +(eval-when (:compile-toplevel :load-toplevel :execute) + (when (find-package '#:kmr-mop) + (pushnew :kmrtest-mop cl:*features*))) + #+kmrtest-mop (progn (defclass credit-rating () @@ -87,4 +87,5 @@ ) ;; kmrcl-mop #+kmrtest-mop -(setq cl:*features* (delete :kmrtest-mop cl:*features*)) +(eval-when (:compile-toplevel :load-toplevel :execute) + (setq cl:*features* (delete :kmrtest-mop cl:*features*)))