1 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; While most of SBCL is derived from the CMU CL system, the test
5 ;;;; files (like this one) were written from scratch after the fork
8 ;;;; This software is in the public domain and is provided with
9 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
10 ;;;; more information.
12 #-win32
(exit :code
104)
14 (with-test (:name
:dbg-print-exception-c
)
16 (alien-funcall (extern-alien "OutputDebugStringA" (function (values) c-string
)) "debug-test")
18 (assert (equal (princ-to-string c
)
19 "DBG_PRINTEXCEPTION_C: debug-test")))))