r4097: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 23 Feb 2003 05:51:55 +0000 (05:51 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 23 Feb 2003 05:51:55 +0000 (05:51 +0000)
debian/changelog
xptestsuite.lisp

index f5b59560ee928fa2d1d529f7e06f154f6c6bcccb..48dbe8892e385f1f60b66d749aff7aacf3ffb774 100644 (file)
@@ -1,3 +1,9 @@
+cl-xptest (1.1.1-3) unstable; urgency=low
+
+  * Use format-control for openmcl (closes: 182112) 
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 22 Feb 2003 22:51:37 -0700
+
 cl-xptest (1.1-2) unstable; urgency=low
 
   * Remove 'load-compiled-op from .asd file
index 0ac9f4964ea047dd6326a826c30cc79eb1f7a6b0..238b4bf91a0d1ffe543a1c8cc7c98f15464d3c16 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author: Craig Brozefsky <craig@onshore.com>
 ;;;; Put in public domain by onShore, Inc
 ;;;;
-;;;; $Id: xptestsuite.lisp,v 1.1 2002/10/22 18:46:20 kevin Exp $
+;;;; $Id: xptestsuite.lisp,v 1.2 2003/02/23 05:51:55 kevin Exp $
 
 (in-package :xp-test)
 
@@ -48,8 +48,8 @@ setup method did for this instance."
 (defun failure (format-str &rest args)
   "Signal a test failure and exit the test."
   (signal 'test-failure
-         #+(or cmu allegro) :format-control
-         #-(or cmu allegro) :format-string
+         #+(or cmu allegro openmcl) :format-control
+         #-(or cmu allegro openmcl) :format-string
          format-str
          :format-arguments args))