summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-11-13 14:09:09 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-11-13 14:09:09 +0000
commitfb7751b44f29746294ccf5a14c31e86ed77d67bc (patch)
tree3526190fe8b09ea537eab5660359b36fd5cb476f /test
parente333a8d6735105199dcda0334d60d59d0cca18a4 (diff)
PR: 2101
Submitted by: Doug Kaufman <dkaufman@rahul.net> Approved by: steve@openssl.org Fixes for tests in cms-test.pl
Diffstat (limited to 'test')
-rw-r--r--test/cms-test.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/cms-test.pl b/test/cms-test.pl
index a84e089ddc..5c87b3ad84 100644
--- a/test/cms-test.pl
+++ b/test/cms-test.pl
@@ -58,6 +58,9 @@ my $ossl_path;
if ( -f "../apps/openssl" ) {
$ossl_path = "../util/shlib_wrap.sh ../apps/openssl";
}
+elsif ( -f "../apps/openssl.exe" ) {
+ $ossl_path = "../util/shlib_wrap.sh ../apps/openssl.exe";
+}
elsif ( -f "..\\out32dll\\openssl.exe" ) {
$ossl_path = "..\\out32dll\\openssl.exe";
}
@@ -232,7 +235,7 @@ my @smime_cms_tests = (
[
"signed content MIME format, RSA key, signed receipt request",
"-sign -in smcont.txt -signer $smdir/smrsa1.pem -nodetach"
- . " -receipt_request_to test@openssl.org -receipt_request_all"
+ . " -receipt_request_to test\@openssl.org -receipt_request_all"
. " -out test.cms",
"-verify -in test.cms "
. " -CAfile $smdir/smroot.pem -out smtst.txt"