diff options
author | Richard Levitte <levitte@openssl.org> | 2016-04-09 11:15:16 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-04-09 21:44:35 +0200 |
commit | 578a00048d78121f1ff30da49007b7b847aca21a (patch) | |
tree | 917fd5a1fac9de91a46c481db2d7f21a7069859f | |
parent | VMS doesn't have directory separators in the same sense as Unix (diff) | |
download | openssl-578a00048d78121f1ff30da49007b7b847aca21a.tar.xz openssl-578a00048d78121f1ff30da49007b7b847aca21a.zip |
Don't check the generated ssl-tests configs on VMS
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>
-rw-r--r-- | test/recipes/80-test_ssl_new.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t index fc1e29c1b1..abb6528465 100644 --- a/test/recipes/80-test_ssl_new.t +++ b/test/recipes/80-test_ssl_new.t @@ -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); } } |