X-Git-Url: http://git.kpe.io/?p=uffi.git;a=blobdiff_plain;f=tests%2Funion.lisp;h=1c7104afed656025de423c809ddc5f866e4201f0;hp=befbbe8bccd3ffba4a966c3aa10be0226874828f;hb=b86fdf882156aa45dc6e8e93a158dedf506f4233;hpb=0824453227a26da41a3929c9117b66714980414b diff --git a/tests/union.lisp b/tests/union.lisp index befbbe8..1c7104a 100644 --- a/tests/union.lisp +++ b/tests/union.lisp @@ -7,15 +7,13 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of UFFI, is Copyright (c) 2002-2003 by Kevin M. Rosenberg +;;;; This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; ************************************************************************* (in-package #:uffi-tests) -(uffi:def-union tunion1 +(uffi:def-union tunion1 (char :char) (int :int) (uint :unsigned-int) @@ -26,26 +24,26 @@ (setf (uffi:get-slot-value *u* 'tunion1 'uint) #-(or sparc sparc-v9 powerpc ppc) (+ (* 1 (char-code #\A)) - (* 256 (char-code #\B)) - (* 65536 (char-code #\C)) - (* 16777216 128)) + (* 256 (char-code #\B)) + (* 65536 (char-code #\C)) + (* 16777216 128)) #+(or sparc sparc-v9 powerpc ppc) (+ (* 16777216 (char-code #\A)) - (* 65536 (char-code #\B)) - (* 256 (char-code #\C)) - (* 1 128))) + (* 65536 (char-code #\B)) + (* 256 (char-code #\C)) + (* 1 128))) -(deftest :union.1 - (uffi:ensure-char-character +(deftest :union.1 + (uffi:ensure-char-character (uffi:get-slot-value *u* 'tunion1 'char)) #\A) -(deftest :union.2 - (uffi:ensure-char-integer +(deftest :union.2 + (uffi:ensure-char-integer (uffi:get-slot-value *u* 'tunion1 'char)) 65) -#-(or sparc sparc-v9 mcl) +#-(or sparc sparc-v9 openmcl digitool) (deftest :union.3 (plusp (uffi:get-slot-value *u* 'tunion1 'uint)) t) @@ -55,7 +53,7 @@ (uffi:def-foreign-type foo-u-ptr (* foo-u)) ;; tests that compilation worked -(deftest :unions.4 +(deftest :unions.4 (with-foreign-object (p 'foo-u) t) t)