X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Funion.cl;h=d0d32812ab4661592af50cd81ea940a4ce6d3361;hb=f73eb94e15649aba5fcfbe3a900aa72f31f46a96;hp=b876699b6f1fd7ae5fc312e47a16c049f9351c25;hpb=ca7e9a2299773cfbc927d71e6289549601438b24;p=uffi.git diff --git a/tests/union.cl b/tests/union.cl index b876699..d0d3281 100644 --- a/tests/union.cl +++ b/tests/union.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: union.cl,v 1.2 2002/03/21 08:30:10 kevin Exp $ +;;;; $Id: union.cl,v 1.3 2002/03/23 16:32:39 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -26,18 +26,18 @@ (df :double)) (defun test-union-1 () - (let ((u (uffi:allocate-foreign-object tunion1))) + (let ((u (uffi:allocate-foreign-object 'tunion1))) (setf (uffi:get-slot-value u 'tunion1 'uint) (+ (char-code #\A) (* 256 (char-code #\B)) (* 65536 (char-code #\C)) (* 16777216 255))) - (format t "~&Should be #\A: ~S" + (format *standard-output* "~&Should be #\A: ~S" (uffi:ensure-char-character (uffi:get-slot-value u 'tunion1 'char))) - (format t "~&Should be negative number: ~D" + (format *standard-output* "~&Should be negative number: ~D" (uffi:get-slot-value u 'tunion1 'int)) - (format t "~&Should be positive number: ~D" + (format *standard-output* "~&Should be positive number: ~D" (uffi:get-slot-value u 'tunion1 'uint)) (uffi:free-foreign-object u)) (values))