r10564: fix :modules in def-function
[uffi.git] / tests / union.lisp
index 584d563e686652e44280f790235ce56d3f1f5526..befbbe8bccd3ffba4a966c3aa10be0226874828f 100644 (file)
         (* 256 (char-code #\C))
         (* 1 128)))
 
-(deftest union.1 
+(deftest :union.1 
     (uffi:ensure-char-character 
      (uffi:get-slot-value *u* 'tunion1 'char))
   #\A)
 
-(deftest union.2 
+(deftest :union.2 
     (uffi:ensure-char-integer 
      (uffi:get-slot-value *u* 'tunion1 'char))
   65)
 
 #-(or sparc sparc-v9 mcl)
-(deftest union.3 (plusp (uffi:get-slot-value *u* 'tunion1 'uint)) t)
+(deftest :union.3 (plusp (uffi:get-slot-value *u* 'tunion1 'uint)) t)
 
 
 (uffi:def-union foo-u
 (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)
 
-(deftest unions.5
+(deftest :unions.5
     (progn
       (uffi:def-foreign-type foo-union (:union foo-u))
       t)