diff options
author | Sebastian Andrzej Siewior <sebastian@breakpoint.cc> | 2020-06-16 23:50:26 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-06-23 12:25:48 +0200 |
commit | a4e440d6477b40b04ce825dae14c7f27778ca8f1 (patch) | |
tree | 17e12b9284b215ac64da77b8167801b13f8d0000 /test/recipes/80-test_ocsp.t | |
parent | APPS: Properly pass -no-CAstore (diff) | |
download | openssl-a4e440d6477b40b04ce825dae14c7f27778ca8f1.tar.xz openssl-a4e440d6477b40b04ce825dae14c7f27778ca8f1.zip |
TEST: Pass -no-CAstore in 80-test_ocsp.t
Without passing -no-CAstore the default CAstore will be used and the
testsuite will fail the system has certificates installed.
Fixes: #11645
Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12171)
Diffstat (limited to 'test/recipes/80-test_ocsp.t')
-rw-r--r-- | test/recipes/80-test_ocsp.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/80-test_ocsp.t b/test/recipes/80-test_ocsp.t index 3aedd093e5..3727c360ba 100644 --- a/test/recipes/80-test_ocsp.t +++ b/test/recipes/80-test_ocsp.t @@ -45,7 +45,7 @@ sub test_ocsp { "-partial_chain", @check_time, "-CAfile", catfile($ocspdir, $CAfile), "-verify_other", catfile($ocspdir, $untrusted), - "-no-CApath"])), + "-no-CApath", "-no-CAstore"])), $title); }); } |