summaryrefslogtreecommitdiffstats
path: root/test/tests.com
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2010-01-27 09:18:42 +0000
committerRichard Levitte <levitte@openssl.org>2010-01-27 09:18:42 +0000
commit407a410136f0cd6b3bbdb665c8a2d0a3ddce9122 (patch)
tree962a0f091f4999e931fce8cf284e07c5f91877e9 /test/tests.com
parent9921f865e4f99032653f42c3819ea2fd9662e830 (diff)
Have the VMS build system catch up with the 1.0.0-stable branch.
Diffstat (limited to 'test/tests.com')
-rw-r--r--test/tests.com9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/tests.com b/test/tests.com
index 7fd99937d8..d151cd3955 100644
--- a/test/tests.com
+++ b/test/tests.com
@@ -7,7 +7,7 @@ $ __here = f$parse(f$parse("A.;",__proc) - "A.;","[]A.;") - "A.;"
$ __save_default = f$environment("default")
$ __arch := VAX
$ if f$getsyi("cpu") .ge. 128 then -
- __arch := f$edit( f$getsyi( "ARCH_NAME"), "UPCASE")
+ __arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE")
$ if __arch .eqs. "" then __arch := UNK
$ texe_dir := sys$disk:[-.'__arch'.exe.test]
$ exe_dir := sys$disk:[-.'__arch'.exe.apps]
@@ -16,6 +16,7 @@ $ sslroot = f$parse("sys$disk:[-.apps];",,,,"syntax_only") - "].;"+ ".]"
$ define /translation_attributes = concealed sslroot 'sslroot'
$
$ set default '__here'
+$
$ on control_y then goto exit
$ on error then goto exit
$
@@ -34,7 +35,7 @@ $ tests := -
test_enc,test_x509,test_rsa,test_crl,test_sid,-
test_gen,test_req,test_pkcs7,test_verify,test_dh,test_dsa,-
test_ss,test_ca,test_engine,test_evp,test_ssl,test_tsa,test_ige,-
- test_jpake
+ test_jpake,test_cms
$ endif
$ tests = f$edit(tests,"COLLAPSE")
$
@@ -286,6 +287,10 @@ $ test_jpake:
$ write sys$output "Test JPAKE"
$ mcr 'texe_dir''jpaketest'
$ return
+$ test_cms:
+$ write sys$output "CMS consistency test"
+$ perl CMS-TEST.PL
+$ return
$
$
$ exit: