summaryrefslogtreecommitdiff
path: root/src/lib/libssl/test/treq.com
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/test/treq.com')
-rw-r--r--src/lib/libssl/test/treq.com13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/lib/libssl/test/treq.com b/src/lib/libssl/test/treq.com
index d2594be6a7..acf08b79ef 100644
--- a/src/lib/libssl/test/treq.com
+++ b/src/lib/libssl/test/treq.com
@@ -1,14 +1,17 @@
1$! TREQ.COM -- Tests req keys 1$! TREQ.COM -- Tests req keys
2$ 2$
3$ __arch := VAX 3$ __arch = "VAX"
4$ if f$getsyi("cpu") .ge. 128 then - 4$ if f$getsyi("cpu") .ge. 128 then -
5 __arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE") 5 __arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE")
6$ if __arch .eqs. "" then __arch := UNK 6$ if __arch .eqs. "" then __arch = "UNK"
7$ exe_dir := sys$disk:[-.'__arch'.exe.apps] 7$!
8$ if (p2 .eqs. "64") then __arch = __arch+ "_64"
9$!
10$ exe_dir = "sys$disk:[-.''__arch'.exe.apps]"
8$ 11$
9$ cmd := mcr 'exe_dir'openssl req -config [-.apps]openssl-vms.cnf 12$ cmd = "mcr ''exe_dir'openssl req -config [-.apps]openssl-vms.cnf"
10$ 13$
11$ t := testreq.pem 14$ t = "testreq.pem"
12$ if p1 .nes. "" then t = p1 15$ if p1 .nes. "" then t = p1
13$ 16$
14$ write sys$output "testing req conversions" 17$ write sys$output "testing req conversions"