X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Farrays.cl;h=668171c61d7fc3e5abd1de1ce15c0333ea26ffc1;hb=d596034b6a258cc97f32c33508079db469c8af2a;hp=e9bbbaaea7cd45a18370f348c928515d4b9b6a61;hpb=7cb20f3bc266ede16dfcd449986136c43c4a2d57;p=uffi.git diff --git a/tests/arrays.cl b/tests/arrays.cl index e9bbbaa..668171c 100644 --- a/tests/arrays.cl +++ b/tests/arrays.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: arrays.cl,v 1.1 2002/03/21 07:56:45 kevin Exp $ +;;;; $Id: arrays.cl,v 1.3 2002/04/02 21:29:45 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -33,7 +33,7 @@ (defun test-array-2d () "Tests 2d array" - (let ((a (uffi:allocate-foreign-object (* :long) +row-length+))) + (let ((a (uffi:allocate-foreign-object '(* :long) +row-length+))) (dotimes (r +row-length+) (declare (fixnum r)) (setf (uffi:deref-array a '(:array (* :long)) r) @@ -55,10 +55,10 @@ (uffi:free-foreign-object a)) (values)) -#+test-uffi +#+examples-uffi (test-array-1d) -#+test-uffi +#+examples-uffi (test-array-2d)