X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fgethostname.cl;h=49ed9dec6c1141e7c092d16128790d72ab9f46c2;hb=acdc714a0b8ea9c0df0c9ffc56699fa010bd549e;hp=fcec16e66fca67142cf7dc6abe89ed0432021cfe;hpb=379a7c3e7b8249ace498d8733c87a3f575a7c799;p=uffi.git diff --git a/tests/gethostname.cl b/tests/gethostname.cl index fcec16e..49ed9de 100644 --- a/tests/gethostname.cl +++ b/tests/gethostname.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: gethostname.cl,v 1.8 2002/03/22 20:51:08 kevin Exp $ +;;;; $Id: gethostname.cl,v 1.11 2002/04/02 21:42:11 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -38,12 +38,28 @@ (defun gethostname2 () "Returns the hostname" - (uffi:with-foreign-object (name (:array :unsigned-char 256)) + (uffi:with-foreign-object (name '(:array :unsigned-char 256)) (if (zerop (c-gethostname (uffi:char-array-to-pointer name) 256)) (uffi:convert-from-foreign-string name) (error "gethostname() failed.")))) +#+examples-uffi +(progn + (format t "~&Hostname (technique 1): ~A" (gethostname)) + (format t "~&Hostname (technique 2): ~A" (gethostname2))) + #+test-uffi -(format t "~&Hostname (technique 1): ~A" (gethostname)) -(format t "~&Hostname (technique 2): ~A" (gethostname2)) +(progn + (let ((hostname1 (gethostname)) + (hostname2 (gethostname2))) + + (util.test:test (and (stringp hostname1) (stringp hostname2)) t + :fail-info "gethostname not string") + (util.test:test (and (not (zerop (length hostname1))) + (not (zerop (length hostname2)))) t + :fail-info "gethostname length 0") + (util.test:test (string= hostname1 hostname1) (length hostname1) + :fail-info "gethostname techniques don't match")) + ) +