diff options
author | Richard Levitte <levitte@openssl.org> | 2017-05-16 08:57:33 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-06-15 19:46:24 +0200 |
commit | c537e74ba32e28d747d8e747abfa6cfff75c44c1 (patch) | |
tree | 5eee0b8c61328eb00c6cc6d7757b4a54efde7c72 /test/recipes/30-test_evp.t | |
parent | .travis.yml: Detect if 'make update' updated something (diff) | |
download | openssl-c537e74ba32e28d747d8e747abfa6cfff75c44c1.tar.xz openssl-c537e74ba32e28d747d8e747abfa6cfff75c44c1.zip |
Move bn and evp test programs input data to their respective data dir
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3472)
Diffstat (limited to 'test/recipes/30-test_evp.t')
-rw-r--r-- | test/recipes/30-test_evp.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t index a90b3a989b..b49824401a 100644 --- a/test/recipes/30-test_evp.t +++ b/test/recipes/30-test_evp.t @@ -10,7 +10,7 @@ use strict; use warnings; -use OpenSSL::Test qw/:DEFAULT srctop_file/; +use OpenSSL::Test qw/:DEFAULT data_file/; setup("test_evp"); @@ -20,6 +20,6 @@ my @files = ( "evpciph.txt", "evpdigest.txt", "evpencod.txt", "evpkdf.txt", plan tests => scalar(@files); foreach my $f ( @files ) { - ok(run(test(["evp_test", srctop_file("test", "$f")])), + ok(run(test(["evp_test", data_file("$f")])), "running evp_test $f"); } |