1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Minor tweaks for new src/test/recovery

Author: Michael Paquier
This commit is contained in:
Alvaro Herrera
2016-02-29 18:16:59 -03:00
parent 10b4852215
commit 5847397dec
8 changed files with 14 additions and 11 deletions

View File

@ -28,6 +28,9 @@ modules/
perl/
Infrastructure for Perl-based TAP tests
recovery/
Test suite for recovery and replication
regress/
PostgreSQL's main regression test suite, pg_regress

View File

@ -1,3 +1,2 @@
# Generated by test suite
/regress_log/
/tmp_check/

View File

@ -15,3 +15,6 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
clean distclean maintainer-clean:
rm -rf tmp_check

View File

@ -3,11 +3,7 @@ src/test/recovery/README
Regression tests for recovery and replication
=============================================
This directory contains a test suite for recovery and replication,
testing mainly the interactions of recovery.conf with cluster
instances by providing a simple set of routines that can be used
to define a custom cluster for a test, including backup, archiving,
and streaming configuration.
This directory contains a test suite for recovery and replication.
Running the tests
=================

View File

@ -1,4 +1,4 @@
# test for archiving with warm standby
# test for archiving with hot standby
use strict;
use warnings;
use PostgresNode;

View File

@ -1,5 +1,5 @@
# Test for timeline switch
# Ensure that a standby is able to follow a newly-promoted standby
# Ensure that a cascading standby is able to follow a newly-promoted standby
# on a new timeline.
use strict;
use warnings;