c91531aaa7
- updated to 2.0.12: ** FFI: Add support for functions that set 'errno' ** The #!r6rs directive now influences read syntax ** 'read' now accepts "\(" as equivalent to "(" ** SRFI-14 character data set upgraded to Unicode 8.0.0 ** SRFI-19 table of leap seconds updated ** 'string-hash', 'read-string', and 'write' have been optimized ** GOOPS bug fix for inherited accessor methods for complete list of changes see NEWS - refreshed patches - add key of Andy Wingo to guile.keyring OBS-URL: https://build.opensuse.org/request/show/412615 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/guile?expand=0&rev=80
21 lines
1018 B
Diff
21 lines
1018 B
Diff
Index: guile-2.0.12/test-suite/tests/net-db.test
|
|
===================================================================
|
|
--- guile-2.0.12.orig/test-suite/tests/net-db.test 2016-07-21 14:25:17.366696839 +0200
|
|
+++ guile-2.0.12/test-suite/tests/net-db.test 2016-07-21 14:25:23.086643860 +0200
|
|
@@ -79,6 +79,7 @@
|
|
(and (defined? 'EAI_NODATA) ; GNU extension
|
|
(= errcode EAI_NODATA))
|
|
(= errcode EAI_AGAIN)
|
|
+ (= errcode EAI_SYSTEM)
|
|
(begin
|
|
(format #t "unexpected error code: ~a ~s~%"
|
|
errcode (gai-strerror errcode))
|
|
@@ -105,6 +106,7 @@
|
|
;; `EAI_NONAME'.)
|
|
(and (or (= errcode EAI_SERVICE)
|
|
(= errcode EAI_NONAME)
|
|
+ (= errcode EAI_SYSTEM)
|
|
(and (defined? 'EAI_NODATA)
|
|
(= errcode EAI_NODATA)))
|
|
(string? (gai-strerror errcode))))))))
|