X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fstrtol.cl;h=32c5c42e1bfd836a54595db210d5e7b9d7337c6f;hb=acdc714a0b8ea9c0df0c9ffc56699fa010bd549e;hp=8255ce55d3de985e2b4db3b48c39ca21a89cd77f;hpb=c49c694169461e9e53659280deb3e65785c0bd12;p=uffi.git diff --git a/tests/strtol.cl b/tests/strtol.cl index 8255ce5..32c5c42 100644 --- a/tests/strtol.cl +++ b/tests/strtol.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: strtol.cl,v 1.14 2002/04/02 22:10:22 kevin Exp $ +;;;; $Id: strtol.cl,v 1.15 2002/04/02 23:27:05 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -72,9 +72,10 @@ of first non-valid character" (progn (flet ((test-strtol (str results) (util.test:test (multiple-value-list (strtol str)) results - :test-function #'equal + :test #'equal :fail-info "Error testing strtol"))) - (test-strtol "55" '(55 t)) + (test-strtol "123" '(123 t)) + (test-strtol "0" '(0 t)) (test-strtol "55a" '(55 2)) (test-strtol "a" '(nil nil))))