"Marijn Schouten (hkBst)" <[EMAIL PROTECTED]> writes:
>
> ERROR: Value too large for defined data type
> PASS: gmtime: (in another thread after error 9223372036854775807)

Hmm.  Thanks.  I think the change below should do the trick, if you'd
like to try it.

> Note that I have built guile without thread support.

Are you sure?  Those tests are meant for threads, and it looks like

        (provided? 'threads)

passed.  (Run ./pre-inst-guile and try that if you want to check.)


--- time.test.~1.6.2.4.~	2006-09-23 10:05:29.000000000 +1000
+++ time.test	2007-01-25 08:56:05.000000000 +1100
@@ -34,7 +34,7 @@
 
 		(alarm 5)
 		(false-if-exception (gmtime t))
-		(join-thread (begin-thread (catch 'out-of-range
+		(join-thread (begin-thread (catch #f
 						  (lambda () (gmtime t))
 						  (lambda args #f))))
 		(alarm 0)
_______________________________________________
Bug-guile mailing list
Bug-guile@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-guile

Reply via email to