r1721: *** empty log message ***
[uffi.git] / tests / c-test-fns.cl
index 45f144dfb3fec093773ba1c274a762f28c851ead..1bedef93abaa7d247e68217adb2586f69567cb1d 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: c-test-fns.cl,v 1.2 2002/03/21 09:54:34 kevin Exp $
+;;;; $Id: c-test-fns.cl,v 1.5 2002/04/02 21:29:45 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -19,9 +19,7 @@
 (in-package :cl-user)
 
 (unless (uffi:load-foreign-library 
-        (make-pathname :name "c-test-fns" 
-                       :type #+(or linux unix)"so" #+(or win32 mswindows) "dll"
-                       :defaults *load-truename*)
+        (uffi:find-foreign-library "c-test-fns" *load-truename*)
         :supporting-libraries '("c")
         :force-load t)
   (warn "Unable to load c-test-fns library"))
      (half-double-vector +double-vec-length+ (system:vector-sap vec)))
     vec))
     
-#+test-uffi
+#+examples-uffi
 (format t "~&(string-to-upper \"this is a test\") => ~A" 
        (string-to-upper "this is a test"))
 
-#+test-uffi
+#+examples-uffi
 (format t "~&(string-to-upper nil) => ~A" 
        (string-to-upper nil))
 
-#+test-uffi
+#+examples-uffi
 (format t "~&(string-count-upper \"This is a Test\") => ~A" 
        (string-count-upper "This is a Test"))
 
-#+test-uffi
+#+examples-uffi
 (format t "~&(string-count-upper nil) => ~A" 
        (string-count-upper nil))
 
-#+test-uffi
+#+examples-uffi
 (format t "~&Half vector: ~S" (test-half-double-vector))