r10585: rename to more closely align with src filename
[uffi.git] / tests / structs.lisp
index 6eb7577d4a3438a1b270fe2b05793793b53435f5..3c886a170e7db27b19511c02e65732fc85ffc2e1 100644 (file)
 (uffi:def-foreign-type foo-ptr (* foo))
 
 ;; tests that compilation worked
-(deftest structs.1 
+(deftest :structs.1 
   (with-foreign-object (p 'foo)
     t)
   t)
 
+(deftest :structs.2
+    (progn
+      (uffi:def-foreign-type foo-struct (:struct foo))
+      t)
+  t)