X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fassertoid.lisp;h=c6dd931b4aa013840236e979603965562cab34bb;hb=21223eedf790450dc484907c2bedf2b9bdaa80bf;hp=d115d9ee55916cf823d28cea71e4b9169f045771;hpb=e4eb979046e594444cf5972801ea5f4a5eb1a7c7;p=sbcl.git diff --git a/tests/assertoid.lisp b/tests/assertoid.lisp index d115d9e..c6dd931 100644 --- a/tests/assertoid.lisp +++ b/tests/assertoid.lisp @@ -1,8 +1,26 @@ ;;;; the ASSERTOID macro, asserting something with added generality ;;;; to help in regression tests +;;;; This software is part of the SBCL system. See the README file for +;;;; more information. +;;;; +;;;; While most of SBCL is derived from the CMU CL system, the test +;;;; files (like this one) were written from scratch after the fork +;;;; from CMU CL. +;;;; +;;;; This software is in the public domain and is provided with +;;;; absolutely no warranty. See the COPYING and CREDITS files for +;;;; more information. + (cl:in-package :cl-user) +(defmacro grab-condition (&body body) + `(nth-value 1 + (ignore-errors ,@body))) + +(defmacro raises-error? (&body body) + `(typep (nth-value 1 (ignore-errors ,@body)) 'error)) + ;;; EXPR is an expression to evaluate (both with EVAL and with ;;; COMPILE/FUNCALL). EXTRA-OPTIMIZATIONS is a list of lists of ;;; optimizations to pass to (DECLARE (OPTIMIZE ..)), to cause the