summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-11-13 13:44:14 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-11-13 13:44:14 +0000
commitd5d1c537356bced89eaa6bb57066684840171fd4 (patch)
tree3417e108031ee4d0f963e71090961d382129b13b /test
parent1aac5c0ee8041249aedc44396b908d2360d7c80e (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 ee191b37f1..ea7c2bd847 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"