postgresql/src/test/recovery
Andrew Dunstan 9ad21a6957 Don't use an Msys virtual path to create a tablespace
The new unlogged_reinit recovery tests create a new tablespace using
TestLib.pm's tempdir. However, on msys that function returns a virtual
path that isn't understood by Postgres. Here we add a new function to
TestLib.pm to turn such a path into a real path on the underlying file
system, and use it in the new test to create the tablespace. The new
function is essentially a NOOP everywhere but msys.
2018-03-20 08:25:36 +10:30
..
t Don't use an Msys virtual path to create a tablespace 2018-03-20 08:25:36 +10:30
.gitignore Minor tweaks for new src/test/recovery 2016-02-29 18:16:59 -03:00
Makefile Add installcheck support to more test suites 2018-01-23 07:11:38 -05:00
README Add installcheck support to more test suites 2018-01-23 07:11:38 -05:00

README

src/test/recovery/README

Regression tests for recovery and replication
=============================================

This directory contains a test suite for recovery and replication.

Running the tests
=================

    make check

or

    make installcheck

NOTE: This creates a temporary installation (in the case of "check"),
and some tests may create one or multiple nodes, be they master or
standby(s) for the purpose of the tests.

NOTE: This requires the --enable-tap-tests argument to configure.