diff options
author | tb <> | 2023-06-01 09:46:00 +0000 |
---|---|---|
committer | tb <> | 2023-06-01 09:46:00 +0000 |
commit | 22e0977e7894a71130566c7015e6a45d57a84672 (patch) | |
tree | ce3d564d9db9ebf4f76ba3092f48f37a25b15b8b /src | |
parent | b8dce7ac320a7caa6b20f0d8cf605cfc4879bde3 (diff) | |
download | openbsd-22e0977e7894a71130566c7015e6a45d57a84672.tar.gz openbsd-22e0977e7894a71130566c7015e6a45d57a84672.tar.bz2 openbsd-22e0977e7894a71130566c7015e6a45d57a84672.zip |
Remove the speed test again
It takes too much time and we now know that all covered ciphers can cope
with unaligned input and output on all tested architectures.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/usr.bin/openssl/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/regress/usr.bin/openssl/Makefile b/src/regress/usr.bin/openssl/Makefile index 8cdaac01ac..876ebbcc6d 100644 --- a/src/regress/usr.bin/openssl/Makefile +++ b/src/regress/usr.bin/openssl/Makefile | |||
@@ -1,12 +1,11 @@ | |||
1 | # $OpenBSD: Makefile,v 1.8 2023/05/20 12:07:21 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.9 2023/06/01 09:46:00 tb Exp $ |
2 | 2 | ||
3 | SUBDIR= options x509 | 3 | SUBDIR= options x509 |
4 | 4 | ||
5 | CLEANFILES+= testdsa.key testdsa.pem rsakey.pem rsacert.pem dsa512.pem | 5 | CLEANFILES+= testdsa.key testdsa.pem rsakey.pem rsacert.pem dsa512.pem |
6 | CLEANFILES+= appstest_dir | 6 | CLEANFILES+= appstest_dir |
7 | 7 | ||
8 | REGRESS_TARGETS=ssl-enc ssl-dsa ssl-rsa appstest speed | 8 | REGRESS_TARGETS=ssl-enc ssl-dsa ssl-rsa appstest |
9 | REGRESS_SLOW_TARGETS=speed | ||
10 | 9 | ||
11 | OPENSSL=/usr/bin/openssl | 10 | OPENSSL=/usr/bin/openssl |
12 | CLEAR1=p | 11 | CLEAR1=p |
@@ -60,10 +59,6 @@ ssl-rsa: | |||
60 | env OPENSSL=${OPENSSL} sh ${.CURDIR}/testrsa.sh ${.OBJDIR} ${.CURDIR} | 59 | env OPENSSL=${OPENSSL} sh ${.CURDIR}/testrsa.sh ${.OBJDIR} ${.CURDIR} |
61 | appstest: | 60 | appstest: |
62 | env OPENSSL=${OPENSSL} sh ${.CURDIR}/appstest.sh -q | 61 | env OPENSSL=${OPENSSL} sh ${.CURDIR}/appstest.sh -q |
63 | speed: | ||
64 | .for offset in 0 3 | ||
65 | ${OPENSSL} speed -unaligned ${offset} | ||
66 | .endfor | ||
67 | 62 | ||
68 | clean: | 63 | clean: |
69 | rm -rf ${CLEANFILES} | 64 | rm -rf ${CLEANFILES} |