[postgis-tickets] r16551 - Disable interrupt tests by default, now requires --with-interrupt-tests to turn on.

Regina Obe lr at pcorp.us
Tue Apr 24 02:28:02 PDT 2018


Author: robe
Date: 2018-04-24 02:28:02 -0700 (Tue, 24 Apr 2018)
New Revision: 16551

Modified:
   branches/2.3/NEWS
   branches/2.3/configure.ac
Log:
Disable interrupt tests by default, now requires --with-interrupt-tests to turn on.
This is to quiet false alarms which often happen on a busy box
Closes #4074

Modified: branches/2.3/NEWS
===================================================================
--- branches/2.3/NEWS	2018-04-21 13:20:22 UTC (rev 16550)
+++ branches/2.3/NEWS	2018-04-24 09:28:02 UTC (rev 16551)
@@ -4,8 +4,8 @@
   * Bug Fixes and Enchantments
 
   - #4071, ST_ClusterKMeans crash on NULL/EMPTY fixed (Darafei Praliaskouski)
+  - #4074, Disable interrupt tests by default (Regina Obe)
 
-
 PostGIS 2.3.7
 2018/04/06
 

Modified: branches/2.3/configure.ac
===================================================================
--- branches/2.3/configure.ac	2018-04-21 13:20:22 UTC (rev 16550)
+++ branches/2.3/configure.ac	2018-04-24 09:28:02 UTC (rev 16551)
@@ -434,7 +434,7 @@
   PGSQL_MAJOR_VERSION=`echo $PGSQL_FULL_VERSION | sed 's/[[^0-9]]*\([[0-9]]*\).*/\1/'`
   PGSQL_MINOR_VERSION=`echo $PGSQL_FULL_VERSION | sed 's/[[^\.]]*\.\([[0-9]]*\).*/\1/'`
   PGSQL_MINOR_VERSION=`echo $PGSQL_MINOR_VERSION | sed 's/.*devel.*/0/'`
-  
+
   if test $PGSQL_MAJOR_VERSION -gt 9; then
   	dnl ==================================================================
   	dnl Starting with PostgreSQL 10, major is the new minor
@@ -442,7 +442,7 @@
   	dnl===================================================================
   	PGSQL_MINOR_VERSION=0
   fi
-  
+
   POSTGIS_PGSQL_VERSION="$PGSQL_MAJOR_VERSION$PGSQL_MINOR_VERSION"
 
   PGSQL_PKGLIBDIR=`$PG_CONFIG --pkglibdir`
@@ -1092,8 +1092,13 @@
                     [Disable the interrupt tests (for CI servers)])],
     [], [])
 
-if test "x$with_interrupt_tests" != "xno"; then
-    INTERRUPTTESTS="yes"
+AC_ARG_WITH([interrupt-tests],
+    [AS_HELP_STRING([--with-interrupt-tests],
+                    [Enable interrupt tests])],
+    [INTERRUPTTESTS="yes"], [])
+
+if test "x$with_interrupt_tests" = "xno"; then
+    INTERRUPTTESTS="no"
 fi
 
 AC_SUBST([INTERRUPTTESTS])
@@ -1100,6 +1105,7 @@
 
 
 
+
 dnl ===========================================================================
 dnl SRID stuff
 dnl ===========================================================================



More information about the postgis-tickets mailing list