You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-05 00:28:52 +02:00
Remove errant tabs and fix spacing.
This commit is contained in:
@ -23,10 +23,10 @@
|
|||||||
# setting CFGDEF_REQUIRED in the CFGDEF_COMMAND section.
|
# setting CFGDEF_REQUIRED in the CFGDEF_COMMAND section.
|
||||||
# In CFGDEF_COMMAND section:
|
# In CFGDEF_COMMAND section:
|
||||||
# true - the option must be set somehow for the command, either by default (CFGDEF_DEFAULT) or by the user.
|
# true - the option must be set somehow for the command, either by default (CFGDEF_DEFAULT) or by the user.
|
||||||
# &CFGCMD_CHECK =>
|
# &CFGCMD_CHECK =>
|
||||||
# {
|
# {
|
||||||
# &CFGDEF_REQUIRED => true
|
# &CFGDEF_REQUIRED => true
|
||||||
# },
|
# },
|
||||||
# false - mainly used for overriding the CFGDEF_REQUIRED in the global section.
|
# false - mainly used for overriding the CFGDEF_REQUIRED in the global section.
|
||||||
#
|
#
|
||||||
# CFGDEF_DEFAULT:
|
# CFGDEF_DEFAULT:
|
||||||
|
@ -553,7 +553,7 @@ sub manGet
|
|||||||
"\n" .
|
"\n" .
|
||||||
"SEE ALSO\n" .
|
"SEE ALSO\n" .
|
||||||
"\n" .
|
"\n" .
|
||||||
' /usr/share/doc/' . PROJECT_EXE . "-doc/html/index.html\n" .
|
' /usr/share/doc/' . PROJECT_EXE . "-doc/html/index.html\n" .
|
||||||
' ' . $oManifest->variableReplace('{[backrest-url-base]}') . "\n";
|
' ' . $oManifest->variableReplace('{[backrest-url-base]}') . "\n";
|
||||||
|
|
||||||
return $strManPage;
|
return $strManPage;
|
||||||
|
@ -93,12 +93,12 @@ my @stryCFile =
|
|||||||
'config/define.c',
|
'config/define.c',
|
||||||
'config/load.c',
|
'config/load.c',
|
||||||
'config/parse.c',
|
'config/parse.c',
|
||||||
'protocol/client.c',
|
'protocol/client.c',
|
||||||
'protocol/command.c',
|
'protocol/command.c',
|
||||||
'protocol/helper.c',
|
'protocol/helper.c',
|
||||||
'protocol/parallel.c',
|
'protocol/parallel.c',
|
||||||
'protocol/parallelJob.c',
|
'protocol/parallelJob.c',
|
||||||
'protocol/server.c',
|
'protocol/server.c',
|
||||||
'postgres/client.c',
|
'postgres/client.c',
|
||||||
'postgres/pageChecksum.c',
|
'postgres/pageChecksum.c',
|
||||||
'storage/posix/read.c',
|
'storage/posix/read.c',
|
||||||
|
@ -513,7 +513,7 @@ sub run
|
|||||||
"\t\$(CC) -o test.bin \$(OBJS) test.o" . ($self->{bProfile} ? " -pg" : '') . " \$(LDFLAGS)\n" .
|
"\t\$(CC) -o test.bin \$(OBJS) test.o" . ($self->{bProfile} ? " -pg" : '') . " \$(LDFLAGS)\n" .
|
||||||
"\n" .
|
"\n" .
|
||||||
"test.o: testflags test.c${strTestDepend}\n" .
|
"test.o: testflags test.c${strTestDepend}\n" .
|
||||||
"\t\$(CC) \$(COMMONFLAGS) \$(WARNINGFLAGS) \$(TESTFLAGS) -c test.c\n";
|
"\t\$(CC) \$(COMMONFLAGS) \$(WARNINGFLAGS) \$(TESTFLAGS) -c test.c\n";
|
||||||
|
|
||||||
# Build C file dependencies
|
# Build C file dependencies
|
||||||
foreach my $strCFile (@stryCFile)
|
foreach my $strCFile (@stryCFile)
|
||||||
|
@ -47,7 +47,7 @@ testRun(void)
|
|||||||
AssertError, "assertion 'param.full || param.differential || param.incremental' failed");
|
AssertError, "assertion 'param.full || param.differential || param.incremental' failed");
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------------------------------------------------
|
// -------------------------------------------------------------------------------------------------------------------------
|
||||||
String *filter = backupRegExpP(.full = true);
|
String *filter = backupRegExpP(.full = true);
|
||||||
TEST_RESULT_STR(strPtr(filter), "^[0-9]{8}\\-[0-9]{6}F$", "full backup regex with anchors");
|
TEST_RESULT_STR(strPtr(filter), "^[0-9]{8}\\-[0-9]{6}F$", "full backup regex with anchors");
|
||||||
TEST_RESULT_BOOL(regExpMatchOne(filter, incr), false, " does not exactly match incr");
|
TEST_RESULT_BOOL(regExpMatchOne(filter, incr), false, " does not exactly match incr");
|
||||||
TEST_RESULT_BOOL(regExpMatchOne(filter, diff), false, " does not exactly match diff");
|
TEST_RESULT_BOOL(regExpMatchOne(filter, diff), false, " does not exactly match diff");
|
||||||
|
@ -449,7 +449,7 @@ testRun(void)
|
|||||||
strLstAddZ(argList, "--repo1-retention-full=1");
|
strLstAddZ(argList, "--repo1-retention-full=1");
|
||||||
strLstAddZ(argList, "--pg1-path=/path/to/pg");
|
strLstAddZ(argList, "--pg1-path=/path/to/pg");
|
||||||
strLstAddZ(argList, "--pg1-user=bob");
|
strLstAddZ(argList, "--pg1-user=bob");
|
||||||
harnessCfgLoad(cfgCmdBackup, argList);
|
harnessCfgLoad(cfgCmdBackup, argList);
|
||||||
|
|
||||||
harnessPqScriptSet((HarnessPq [])
|
harnessPqScriptSet((HarnessPq [])
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user