pgsql: Add pg_upgrade test suite

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add pg_upgrade test suite
Date: 2011-11-27 20:46:29
Message-ID: E1RUlcL-00039v-Jy@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add pg_upgrade test suite

It runs the regression tests, runs pg_upgrade on the populated
database, and compares the before and after dumps. While not actually
a cross-version upgrade, this does detect omissions and bugs in the
involved tools from time to time. It's also possible to do a
cross-version upgrade by manually supplying parameters.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/08da2d282f1c3cbff141ecd218d737990cf6d234

Modified Files
--------------
contrib/pg_upgrade/.gitignore | 4 +
contrib/pg_upgrade/Makefile | 8 +++
contrib/pg_upgrade/TESTING | 19 ++++++
contrib/pg_upgrade/test.sh | 123 +++++++++++++++++++++++++++++++++++++++++
src/makefiles/pgxs.mk | 2 +-
src/test/regress/GNUmakefile | 2 +-
6 files changed, 156 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-11-27 21:51:39 pgsql: Improve GiST range-contained-by searches by adding a flag for em
Previous Message Tom Lane 2011-11-27 17:57:20 pgsql: Use the proper macro to convert a bool to a Datum.