Send TLSv1.2 as the record version when using TLSv1.3
[openssl.git] / test / recipes / tconversion.pl
index e5fa9dec879e1097c86eea8d13740c2c4a9860f7..fb0b766ce7ded1367d31a8af698f54637b45a576 100644 (file)
@@ -12,18 +12,18 @@ use warnings;
 
 use File::Compare qw/compare_text/;
 use File::Copy;
-use lib 'testlib';
 use OpenSSL::Test qw/:DEFAULT/;
 
 my %conversionforms = (
     # Default conversion forms.  Other series may be added with
     # specific test types as key.
     "*"                => [ "d", "p" ],
+    "msb"      => [ "d", "p", "msblob" ],
     );
 sub tconversion {
     my $testtype = shift;
     my $t = shift;
-    my @conversionforms = 
+    my @conversionforms =
        defined($conversionforms{$testtype}) ?
        @{$conversionforms{$testtype}} :
        @{$conversionforms{"*"}};