Skip to content

Commit

Permalink
Don't check the generated ssl-tests configs on VMS
Browse files Browse the repository at this point in the history
The simple reason is that the pre-generated files are mainly for Unix.
The VMS variants look slightly different, so comparing will always fail.

Reviewed-by: Emilia Käsper <emilia@openssl.org>
  • Loading branch information
levitte committed Apr 9, 2016
1 parent 842a206 commit 578a000
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/recipes/80-test_ssl_new.t
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ my %conf_dependent_tests = ("02-protocol-version.conf" => 1);

foreach my $conf (@conf_files) {
subtest "Test configuration $conf" => sub {
test_conf($conf, $conf_dependent_tests{$conf} ? 0 : 1);
test_conf($conf,
$conf_dependent_tests{$conf} || $^O eq "VMS" ? 0 : 1);
}
}

Expand Down

0 comments on commit 578a000

Please sign in to comment.