Forgot to correct the definition of __arch in this file.
Submitted by Steven M. Schweda <sms@antinode.info>
diff --git a/test/testtsa.com b/test/testtsa.com
index 5676d70..30284a7 100644
--- a/test/testtsa.com
+++ b/test/testtsa.com
@@ -3,7 +3,9 @@
$!
$
$ __arch := VAX
-$ if f$getsyi("cpu") .ge. 128 then __arch := AXP
+$ if f$getsyi("cpu") .ge. 128 then -
+ __arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE")
+$ if __arch .eqs. "" then __arch := UNK
$ exe_dir := sys$disk:[-.'__arch'.exe.apps]
$
$ openssl := mcr 'f$parse(exe_dir+"openssl.exe")'