summaryrefslogtreecommitdiff
path: root/VMS
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-07-19 09:17:09 +0200
committerRichard Levitte <levitte@openssl.org>2016-08-04 16:57:49 +0200
commit547a19cf4fcb581bd0c310bd69141031c7118295 (patch)
tree279a5a25c861aa2d422958f5cebd348ccdd1be13 /VMS
parent9e64457d1ed6200228a930ab14c5c5e68a666d1e (diff)
downloadopenssl-new-547a19cf4fcb581bd0c310bd69141031c7118295.tar.gz
VMS: have the IVP verify that a well known engine loads properly
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'VMS')
-rw-r--r--VMS/openssl_ivp.com.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/VMS/openssl_ivp.com.in b/VMS/openssl_ivp.com.in
index 3555bf6023..a4c67b26a9 100644
--- a/VMS/openssl_ivp.com.in
+++ b/VMS/openssl_ivp.com.in
@@ -32,9 +32,19 @@ $ WRITE SYS$ERROR "Installation inconsistent"
$ EXIT %x00018292 ! RMS$_FNF, file not found
$ ENDIF
$
+$ ON ERROR THEN GOTO error
+$
$ ! If something else is wrong with the installation, we're likely
$ ! to get an image activation error here
$ openssl version -a
$
+$ ! Verify that engines are where they should be.
+$ openssl engine -c -t dasync
+$
$ WRITE SYS$ERROR "OpenSSL IVP passed"
$ EXIT %x10000001
+$
+$ error:
+$ save_status = $STATUS
+$ WRITE SYS$ERROR "OpenSSL IVP failed"
+$ EXIT 'save_status'