1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-12 10:04:14 +02:00

Rename Perl tests so they don't conflict with their C counterparts.

This commit is contained in:
David Steele 2018-01-16 12:36:22 -05:00
parent 0e9ba98a50
commit d992851456
5 changed files with 10 additions and 6 deletions

View File

@ -122,6 +122,10 @@
<release-item>
<p>No longer run <id>master</id> branch through CI. The <id>integration</id> branch will be run through CI and then pushed to <id>master</id> with github status checks.</p>
</release-item>
<release-item>
<p>Rename Perl tests so they don't conflict with their C counterparts.</p>
</release-item>
</release-development-list>
</release-test-list>
</release>

View File

@ -272,7 +272,7 @@ my $oTestDef =
},
},
{
&TESTDEF_NAME => 'log',
&TESTDEF_NAME => 'log-perl',
&TESTDEF_TOTAL => 1,
&TESTDEF_COVERAGE =>
@ -506,7 +506,7 @@ my $oTestDef =
},
},
{
&TESTDEF_NAME => 'helper',
&TESTDEF_NAME => 'helper-perl',
&TESTDEF_TOTAL => 5,
&TESTDEF_COVERAGE =>
@ -588,7 +588,7 @@ my $oTestDef =
},
},
{
&TESTDEF_NAME => 'push',
&TESTDEF_NAME => 'push-perl',
&TESTDEF_TOTAL => 8,
&TESTDEF_COVERAGE =>

View File

@ -1,7 +1,7 @@
####################################################################################################################################
# Archive Push Tests
####################################################################################################################################
package pgBackRestTest::Module::Archive::ArchivePushTest;
package pgBackRestTest::Module::Archive::ArchivePushPerlTest;
use parent 'pgBackRestTest::Env::HostEnvTest';
####################################################################################################################################

View File

@ -1,7 +1,7 @@
####################################################################################################################################
# CommonLogTest.pm - Unit tests for Log module
####################################################################################################################################
package pgBackRestTest::Module::Common::CommonLogTest;
package pgBackRestTest::Module::Common::CommonLogPerlTest;
use parent 'pgBackRestTest::Common::RunTest';
####################################################################################################################################

View File

@ -1,7 +1,7 @@
####################################################################################################################################
# StorageHelperTest.pm - Tests for Storage::Helper module.
####################################################################################################################################
package pgBackRestTest::Module::Storage::StorageHelperTest;
package pgBackRestTest::Module::Storage::StorageHelperPerlTest;
use parent 'pgBackRestTest::Env::ConfigEnvTest';
####################################################################################################################################