Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
5847397d
Commit
5847397d
authored
Feb 29, 2016
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor tweaks for new src/test/recovery
Author: Michael Paquier
parent
10b48522
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
11 deletions
+14
-11
doc/src/sgml/install-windows.sgml
doc/src/sgml/install-windows.sgml
+4
-3
src/test/README
src/test/README
+3
-0
src/test/recovery/.gitignore
src/test/recovery/.gitignore
+0
-1
src/test/recovery/Makefile
src/test/recovery/Makefile
+3
-0
src/test/recovery/README
src/test/recovery/README
+1
-5
src/test/recovery/t/002_archiving.pl
src/test/recovery/t/002_archiving.pl
+1
-1
src/test/recovery/t/004_timeline_switch.pl
src/test/recovery/t/004_timeline_switch.pl
+1
-1
src/tools/msvc/clean.bat
src/tools/msvc/clean.bat
+1
-0
No files found.
doc/src/sgml/install-windows.sgml
View file @
5847397d
...
...
@@ -455,9 +455,10 @@ $ENV{CONFIG}="Debug";
</para>
<para>
Running the regression tests on client programs, with "vcregress bincheck",
or on recovery tests, with "vcregress recoverycheck" requires an additional
Perl module to be installed:
Running the regression tests on client programs, with
<command>vcregress bincheck</>, or on recovery tests, with
<command>vcregress recoverycheck</> requires an additional Perl module
to be installed:
<variablelist>
<varlistentry>
<term><productname>IPC::Run</productname></term>
...
...
src/test/README
View file @
5847397d
...
...
@@ -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
...
...
src/test/recovery/.gitignore
View file @
5847397d
# Generated by test suite
/regress_log/
/tmp_check/
src/test/recovery/Makefile
View file @
5847397d
...
...
@@ -15,3 +15,6 @@ include $(top_builddir)/src/Makefile.global
check
:
$(prove_check)
clean distclean maintainer-clean
:
rm
-rf
tmp_check
src/test/recovery/README
View file @
5847397d
...
...
@@ -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
=================
...
...
src/test/recovery/t/002_archiving.pl
View file @
5847397d
# test for archiving with
warm
standby
# test for archiving with
hot
standby
use
strict
;
use
warnings
;
use
PostgresNode
;
...
...
src/test/recovery/t/004_timeline_switch.pl
View file @
5847397d
# 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
;
...
...
src/tools/msvc/clean.bat
View file @
5847397d
...
...
@@ -97,6 +97,7 @@ if exist src\bin\pg_ctl\tmp_check rd /s /q src\bin\pg_ctl\tmp_check
if
exist
src
\bin\pg_rewind\tmp_check
rd
/s /q
src
\bin\pg_rewind\tmp_check
if
exist
src
\bin\pgbench\tmp_check
rd
/s /q
src
\bin\pgbench\tmp_check
if
exist
src
\bin\scripts\tmp_check
rd
/s /q
src
\bin\scripts\tmp_check
if
exist
src
\test\recovery\tmp_check
rd
/s /q
src
\test\recovery\tmp_check
REM Clean up datafiles built with contrib
REM cd contrib
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment