diff --git a/doc/xml/release.xml b/doc/xml/release.xml index e07fddf3a..5eb99b43d 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -122,6 +122,10 @@ Add missing ToLog() coverage to String, List, and PgControl. + + + Create aliases for test VMs ordered by age. + diff --git a/test/lib/pgBackRestTest/Common/VmTest.pm b/test/lib/pgBackRestTest/Common/VmTest.pm index b290ab25b..7d05da081 100644 --- a/test/lib/pgBackRestTest/Common/VmTest.pm +++ b/test/lib/pgBackRestTest/Common/VmTest.pm @@ -109,8 +109,18 @@ use constant VM_EXPECT => VM_CO7; use constant VM_HOST_DEFAULT => VM_U18; push @EXPORT, qw(VM_HOST_DEFAULT); -# Lists valid VMs -use constant VM_LIST => (VM_U18, VM_CO6, VM_CO7, VM_U12); +# VM aliases for run matrices (numbered oldest to newest) +use constant VM1 => VM_CO6; + push @EXPORT, qw(VM1); +use constant VM2 => VM_U12; + push @EXPORT, qw(VM2); +use constant VM3 => VM_CO7; + push @EXPORT, qw(VM3); +use constant VM4 => VM_U18; + push @EXPORT, qw(VM4); + +# List of default test VMs (in this order: newest, oldest, next newest, next oldest) +use constant VM_LIST => (VM4, VM1, VM3, VM2); push @EXPORT, qw(VM_LIST); my $oyVm =
Add missing ToLog() coverage to String, List, and PgControl.
String
List
PgControl
Create aliases for test VMs ordered by age.