From a2d5be9c3399c42ea98e9d4607ba1f5b4e4916d6 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Mon, 27 Feb 2012 17:48:46 +0000 Subject: [PATCH] Ignore LF/CRLF differences when differencing sql output files in raster tests. git-svn-id: http://svn.osgeo.org/postgis/trunk@9319 b70326c6-7e19-0410-871a-916f4a2858ee --- regress/run_test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regress/run_test b/regress/run_test index 370b0e8ae..26d0684ec 100755 --- a/regress/run_test +++ b/regress/run_test @@ -497,7 +497,7 @@ run_raster_loader_and_check_output() # Compare the output SQL file with the expected if there is one. if [ -r $_expected_sql_file ]; then show_progress - if diff "${TMPDIR}/loader.out" "$_expected_sql_file" > /dev/null; then + if diff -w "${TMPDIR}/loader.out" "$_expected_sql_file" > /dev/null; then : else fail " $_description: actual SQL does not match expected.", \ -- 2.40.0