[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-57-gc0d947e

git at osgeo.org git at osgeo.org
Tue Aug 18 00:35:34 PDT 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  c0d947e005e67e8b36a3f0b2d997229782c356c5 (commit)
      from  99c50d4602a6e1d94f65932cbcbee933af998ea1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c0d947e005e67e8b36a3f0b2d997229782c356c5
Author: Raúl Marín <git at rmr.ninja>
Date:   Tue Aug 18 09:34:29 2020 +0200

    Disable INFINITY rountrip tests
    
    They fail in Windows / MinGW for some reason
    Closes #4735

diff --git a/liblwgeom/cunit/cu_print.c b/liblwgeom/cunit/cu_print.c
index 5f7f37b..7274b61 100644
--- a/liblwgeom/cunit/cu_print.c
+++ b/liblwgeom/cunit/cu_print.c
@@ -550,8 +550,12 @@ test_lwprint_roundtrip(void)
 
 	/* Special cases */
 	assert_lwprint_roundtrip(-0); /* -0 is considered equal to 0 */
-	assert_lwprint_roundtrip(INFINITY);
-	assert_lwprint_roundtrip(-INFINITY);
+
+	/* Disabled because Windows / MinGW doesn't like them (#4735)
+	 * 	assert_lwprint_roundtrip(INFINITY);
+	 *  assert_lwprint_roundtrip(-INFINITY);
+	 */
+
 	/* nan is never equal to nan
 	 * assert_lwprint_roundtrip(NAN);
 	 */

-----------------------------------------------------------------------

Summary of changes:
 liblwgeom/cunit/cu_print.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list