test/recipes/66-test_ossl_store.t: ensure native paths

Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15823)
This commit is contained in:
Richard Levitte 2021-06-22 08:04:12 +02:00
parent 01b093aaee
commit bb4f826272

View File

@ -9,6 +9,7 @@
use strict;
use warnings;
use File::Spec::Functions;
use OpenSSL::Test::Simple;
use OpenSSL::Test qw/:DEFAULT srctop_dir data_dir/;
@ -17,5 +18,5 @@ setup("test_ossl_store");
plan tests => 1;
ok(run(test(["ossl_store_test", "-dir", srctop_dir("test"),
"-in", "testrsa.pem", "-sm2", "certs/sm2-root.crt",
"-in", "testrsa.pem", "-sm2", canonpath("certs/sm2-root.crt"),
"-data", data_dir()])));