perltidy run prior to branching

pull/32/head
Andrew Dunstan 8 years ago
parent 1e9c858090
commit d842139099
  1. 5
      src/bin/pg_basebackup/t/010_pg_basebackup.pl
  2. 2
      src/test/ssl/ServerSetup.pm
  3. 12
      src/tools/msvc/MSBuildProject.pm
  4. 16
      src/tools/msvc/Solution.pm
  5. 6
      src/tools/msvc/VCBuildProject.pm
  6. 2
      src/tools/msvc/VSObjectFactory.pm
  7. 2
      src/tools/msvc/builddoc.pl
  8. 2
      src/tools/msvc/dummylib/Win32/Registry.pm
  9. 10
      src/tools/msvc/dummylib/Win32API/File.pm

@ -552,7 +552,10 @@ rmtree("$tempdir/backup_corrupt3");
# do not verify checksums, should return ok
$node->command_ok(
[ 'pg_basebackup', '-D', "$tempdir/backup_corrupt4", '--no-verify-checksums' ],
[
'pg_basebackup', '-D',
"$tempdir/backup_corrupt4", '--no-verify-checksums'
],
'pg_basebackup with -k does not report checksum mismatch');
rmtree("$tempdir/backup_corrupt4");

@ -182,4 +182,4 @@ sub configure_hba_for_ssl
return;
}
1;
1;

@ -11,7 +11,7 @@ use strict;
use warnings;
use base qw(Project);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub _new
{
@ -401,7 +401,7 @@ use strict;
use warnings;
use base qw(MSBuildProject);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -424,7 +424,7 @@ use strict;
use warnings;
use base qw(MSBuildProject);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -470,7 +470,7 @@ use strict;
use warnings;
use base qw(VC2012Project);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -495,7 +495,7 @@ use strict;
use warnings;
use base qw(VC2012Project);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -520,7 +520,7 @@ use strict;
use warnings;
use base qw(VC2012Project);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{

@ -10,7 +10,7 @@ use strict;
use warnings;
use VSObjectFactory;
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub _new
{
@ -770,7 +770,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -795,7 +795,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -821,7 +821,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -847,7 +847,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -873,7 +873,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -901,7 +901,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -929,7 +929,7 @@ use strict;
use warnings;
use base qw(Solution);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{

@ -11,7 +11,7 @@ use strict;
use warnings;
use base qw(Project);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub _new
{
@ -270,7 +270,7 @@ use strict;
use warnings;
use base qw(VCBuildProject);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{
@ -293,7 +293,7 @@ use strict;
use warnings;
use base qw(VCBuildProject);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub new
{

@ -20,7 +20,7 @@ our (@ISA, @EXPORT);
@ISA = qw(Exporter);
@EXPORT = qw(CreateSolution CreateProject DetermineVisualStudioVersion);
no warnings qw(redefine); ## no critic
no warnings qw(redefine); ## no critic
sub CreateSolution
{

@ -107,7 +107,7 @@ sub renamefiles
move $f, $nf;
}
chdir $savedir;
return;
return;
}
sub missing

@ -6,7 +6,7 @@ use warnings;
use vars qw($HKEY_LOCAL_MACHINE);
use Exporter ();
our (@EXPORT,@ISA);
our (@EXPORT, @ISA);
@ISA = qw(Exporter);
@EXPORT = qw($HKEY_LOCAL_MACHINE);

@ -3,12 +3,12 @@ package Win32API::File;
use strict;
use warnings;
use constant { SEM_FAILCRITICALERRORS => 1, SEM_NOGPFAULTERRORBOX => 2 };
sub SetErrormode {};
use constant { SEM_FAILCRITICALERRORS => 1, SEM_NOGPFAULTERRORBOX => 2 };
sub SetErrormode { }
use Exporter;
our(@ISA,@EXPORT_OK,%EXPORT_TAGS);
@ISA = qw(Exporter);
@EXPORT_OK = qw(SetErrorMode SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX);
our (@ISA, @EXPORT_OK, %EXPORT_TAGS);
@ISA = qw(Exporter);
@EXPORT_OK = qw(SetErrorMode SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX);
%EXPORT_TAGS = (SEM_ => [qw(SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX)]);
1;

Loading…
Cancel
Save