diff options
Diffstat (limited to 'src/lib/libssl/test/testgen')
-rw-r--r-- | src/lib/libssl/test/testgen | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/test/testgen b/src/lib/libssl/test/testgen index 12a4ca4cea..3534f5821f 100644 --- a/src/lib/libssl/test/testgen +++ b/src/lib/libssl/test/testgen | |||
@@ -15,13 +15,13 @@ echo "There should be a 2 sequences of .'s and some +'s." | |||
15 | echo "There should not be more that at most 80 per line" | 15 | echo "There should not be more that at most 80 per line" |
16 | echo "This could take some time." | 16 | echo "This could take some time." |
17 | 17 | ||
18 | ../apps/ssleay req -config test.cnf -new -out testreq.pem | 18 | ../apps/openssl req -config test.cnf -new -out testreq.pem |
19 | if [ $? != 0 ]; then | 19 | if [ $? != 0 ]; then |
20 | echo problems creating request | 20 | echo problems creating request |
21 | exit 1 | 21 | exit 1 |
22 | fi | 22 | fi |
23 | 23 | ||
24 | ../apps/ssleay req -verify -in testreq.pem -noout | 24 | ../apps/openssl req -config test.cnf -verify -in testreq.pem -noout |
25 | if [ $? != 0 ]; then | 25 | if [ $? != 0 ]; then |
26 | echo signature on req is wrong | 26 | echo signature on req is wrong |
27 | exit 1 | 27 | exit 1 |