Minor fixes to Guile run tests

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4197 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matthias Köppe 2002-12-13 17:23:19 +00:00
commit 60e5f836ff
3 changed files with 14 additions and 9 deletions

View file

@ -7,12 +7,15 @@
`(if (not ,form)
(error "Check failed: " ',form)))
(define (=~ a b)
(< (abs (- a b)) 1e-8))
;; Check first method
(check (= (foo 1 2 "bar" 4) 15))
(check (=~ (foo 1 2 "bar" 4) 15))
;; Check second method
(check (= (foo 1 2) 4811.4))
(check (= (foo 1 2 3.2) 4797.2))
(check (= (foo 1 2 3.2 #\Q) 4798.2))
(check (=~ (foo 1 2) 4811.4))
(check (=~ (foo 1 2 3.2) 4797.2))
(check (=~ (foo 1 2 3.2 #\Q) 4798.2))
(exit 0)

View file

@ -17,3 +17,5 @@
(if (not (string=? (do-blah2 d) "Grok::blah"))
(error "bad return"))
(exit 0)

View file

@ -1,15 +1,15 @@
(dynamic-call "scm_init_typename_module" (dynamic-link "./libtypename.so"))
(dynamic-call "scm_init_types_module" (dynamic-link "./libtypes.so"))
;;(dynamic-call "scm_init_types_module" (dynamic-link "./libtypes.so"))
(define f (new-Foo))
(define b (new-Bar))
(define x (twoFoo f))
(if (not (isinstance x (types-FloatType)))
(error "wrong return type"))
;;(if (not (isinstance x (types-FloatType)))
;; (error "wrong return type"))
(define y (twoBar b))
(if (not (isinstance y (types-IntType)))
(error "wrong return type"))
;;(if (not (isinstance y (types-IntType)))
;; (error "wrong return type"))
(exit 0)