From: Bruce Momjian Date: Tue, 4 Dec 2012 13:17:45 +0000 (-0500) Subject: In pg_upgrade testing script, turn off command echo at the end so status X-Git-Tag: REL9_3_BETA1~631 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c47d261c07c77d1261c048e5cc1236000188ce86;p=postgresql In pg_upgrade testing script, turn off command echo at the end so status report is clearer. --- diff --git a/contrib/pg_upgrade/test.sh b/contrib/pg_upgrade/test.sh index 503395311e..0ccb8a5985 100644 --- a/contrib/pg_upgrade/test.sh +++ b/contrib/pg_upgrade/test.sh @@ -127,6 +127,11 @@ esac pg_dumpall -f "$temp_root"/dump2.sql || pg_dumpall2_status=$? pg_ctl -m fast stop + +# no need to echo commands anymore +set +x +echo + if [ -n "$pg_dumpall2_status" ]; then echo "pg_dumpall of post-upgrade database cluster failed" exit 1