diff --git a/doc/xml/release.xml b/doc/xml/release.xml index 0f737d605..8bd6fd6be 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -122,6 +122,10 @@ No longer run master branch through CI. The integration branch will be run through CI and then pushed to master with github status checks. + + + Rename Perl tests so they don't conflict with their C counterparts. + diff --git a/test/lib/pgBackRestTest/Common/DefineTest.pm b/test/lib/pgBackRestTest/Common/DefineTest.pm index b725d0a5e..4a11816ac 100644 --- a/test/lib/pgBackRestTest/Common/DefineTest.pm +++ b/test/lib/pgBackRestTest/Common/DefineTest.pm @@ -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 => diff --git a/test/lib/pgBackRestTest/Module/Archive/ArchivePushTest.pm b/test/lib/pgBackRestTest/Module/Archive/ArchivePushPerlTest.pm similarity index 99% rename from test/lib/pgBackRestTest/Module/Archive/ArchivePushTest.pm rename to test/lib/pgBackRestTest/Module/Archive/ArchivePushPerlTest.pm index ba4edf38b..d9e390417 100644 --- a/test/lib/pgBackRestTest/Module/Archive/ArchivePushTest.pm +++ b/test/lib/pgBackRestTest/Module/Archive/ArchivePushPerlTest.pm @@ -1,7 +1,7 @@ #################################################################################################################################### # Archive Push Tests #################################################################################################################################### -package pgBackRestTest::Module::Archive::ArchivePushTest; +package pgBackRestTest::Module::Archive::ArchivePushPerlTest; use parent 'pgBackRestTest::Env::HostEnvTest'; #################################################################################################################################### diff --git a/test/lib/pgBackRestTest/Module/Common/CommonLogTest.pm b/test/lib/pgBackRestTest/Module/Common/CommonLogPerlTest.pm similarity index 97% rename from test/lib/pgBackRestTest/Module/Common/CommonLogTest.pm rename to test/lib/pgBackRestTest/Module/Common/CommonLogPerlTest.pm index 6c358e2d9..1bbeaa4d1 100644 --- a/test/lib/pgBackRestTest/Module/Common/CommonLogTest.pm +++ b/test/lib/pgBackRestTest/Module/Common/CommonLogPerlTest.pm @@ -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'; #################################################################################################################################### diff --git a/test/lib/pgBackRestTest/Module/Storage/StorageHelperTest.pm b/test/lib/pgBackRestTest/Module/Storage/StorageHelperPerlTest.pm similarity index 99% rename from test/lib/pgBackRestTest/Module/Storage/StorageHelperTest.pm rename to test/lib/pgBackRestTest/Module/Storage/StorageHelperPerlTest.pm index b5c4e42a3..c0513f819 100644 --- a/test/lib/pgBackRestTest/Module/Storage/StorageHelperTest.pm +++ b/test/lib/pgBackRestTest/Module/Storage/StorageHelperPerlTest.pm @@ -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'; ####################################################################################################################################
No longer run master branch through CI. The integration branch will be run through CI and then pushed to master with github status checks.
Rename Perl tests so they don't conflict with their C counterparts.