aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-08-14 11:08:43 +0000
committerRichard Levitte <levitte@openssl.org>2002-08-14 11:08:43 +0000
commitb44069730b63600dc57b553ba72c4a11551aa690 (patch)
treeb66714cf892e2bf845714f81fd763bd0d172b130 /test
parent749d055ebaefa2098cfe598ef269efbd6c1e3459 (diff)
downloadopenssl-b44069730b63600dc57b553ba72c4a11551aa690.tar.gz
Make sure that the test input file comes in the same record format as the
typical output from a program in C. PR: 222
Diffstat (limited to 'test')
-rw-r--r--test/tcrl.com4
-rw-r--r--test/testenc.com4
-rw-r--r--test/tpkcs7.com4
-rw-r--r--test/tpkcs7d.com4
-rw-r--r--test/treq.com4
-rw-r--r--test/trsa.com4
-rw-r--r--test/tsid.com4
-rw-r--r--test/tx509.com4
8 files changed, 24 insertions, 8 deletions
diff --git a/test/tcrl.com b/test/tcrl.com
index 2e6ab2814d..86bf9735aa 100644
--- a/test/tcrl.com
+++ b/test/tcrl.com
@@ -13,7 +13,9 @@ $ write sys$output "testing CRL conversions"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d
diff --git a/test/testenc.com b/test/testenc.com
index 3b66f2e0d0..c24fa388c0 100644
--- a/test/testenc.com
+++ b/test/testenc.com
@@ -9,7 +9,9 @@ $ test := p.txt
$ cmd := mcr 'exe_dir'openssl
$
$ if f$search(test) .nes. "" then delete 'test';*
-$ copy 'testsrc' 'test'
+$ convert/fdl=sys$input: 'testsrc' 'test'
+RECORD
+ FORMAT STREAM_LF
$
$ if f$search(test+"-cipher") .nes. "" then delete 'test'-cipher;*
$ if f$search(test+"-clear") .nes. "" then delete 'test'-clear;*
diff --git a/test/tpkcs7.com b/test/tpkcs7.com
index 9e345937c6..047834fba4 100644
--- a/test/tpkcs7.com
+++ b/test/tpkcs7.com
@@ -13,7 +13,9 @@ $ write sys$output "testing PKCS7 conversions"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d
diff --git a/test/tpkcs7d.com b/test/tpkcs7d.com
index 7d4f8794a4..193bb72137 100644
--- a/test/tpkcs7d.com
+++ b/test/tpkcs7d.com
@@ -13,7 +13,9 @@ $ write sys$output "testing PKCS7 conversions (2)"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d
diff --git a/test/treq.com b/test/treq.com
index 22c22c3aa9..5524e485ba 100644
--- a/test/treq.com
+++ b/test/treq.com
@@ -13,7 +13,9 @@ $ write sys$output "testing req conversions"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d
diff --git a/test/trsa.com b/test/trsa.com
index 6b6c318e2b..6dbe59ef64 100644
--- a/test/trsa.com
+++ b/test/trsa.com
@@ -24,7 +24,9 @@ $ write sys$output "testing RSA conversions"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d
diff --git a/test/tsid.com b/test/tsid.com
index bde23f9bb9..abd1d4d737 100644
--- a/test/tsid.com
+++ b/test/tsid.com
@@ -13,7 +13,9 @@ $ write sys$output "testing session-id conversions"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d
diff --git a/test/tx509.com b/test/tx509.com
index 985969c566..7b2592f773 100644
--- a/test/tx509.com
+++ b/test/tx509.com
@@ -13,7 +13,9 @@ $ write sys$output "testing X509 conversions"
$ if f$search("fff.*") .nes "" then delete fff.*;*
$ if f$search("ff.*") .nes "" then delete ff.*;*
$ if f$search("f.*") .nes "" then delete f.*;*
-$ copy 't' fff.p
+$ convert/fdl=sys$input: 't' fff.p
+RECORD
+ FORMAT STREAM_LF
$
$ write sys$output "p -> d"
$ 'cmd' -in fff.p -inform p -outform d -out f.d