From: Mark Cave-Ayland Date: Sat, 18 Jul 2009 18:45:42 +0000 (+0000) Subject: Fix regression regex listings so that the newer "LINE n:" lines and lines containing... X-Git-Tag: 1.5.0b1~573 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba0962fc9f2b9bfc56a696fde1e664151fa62e4c;p=postgis Fix regression regex listings so that the newer "LINE n:" lines and lines containing just a position indicator (^) introduced in PostgreSQL 8.4 are removed from the regression output. git-svn-id: http://svn.osgeo.org/postgis/trunk@4319 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/run_test b/regress/run_test index b0f770ef0..ed6de3653 100755 --- a/regress/run_test +++ b/regress/run_test @@ -125,6 +125,8 @@ run_simple_test () | grep -v "^DROP" \ | grep -v "^CREATE" \ | grep -v "^SET" \ + | grep -v "^LINE [0-9]" \ + | grep -v "^ *^$" \ | sed 's/Infinity/inf/g;s/Inf/inf/g;s/1\.#INF/inf/g' \ | sed 's/[eE]\([+-]\)0\{1,\}\([0-9]\{1,\}\)/e\1\2/g' \ | sed 's/Self-intersection .*/Self-intersection/' \