summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-06-01 09:46:00 +0000
committertb <>2023-06-01 09:46:00 +0000
commita741ec8088f13bdc328f054ecd649ac4174a18ac (patch)
treece3d564d9db9ebf4f76ba3092f48f37a25b15b8b /src
parentfea987b2d1e959977f04e5f737991f6d06effae3 (diff)
downloadopenbsd-a741ec8088f13bdc328f054ecd649ac4174a18ac.tar.gz
openbsd-a741ec8088f13bdc328f054ecd649ac4174a18ac.tar.bz2
openbsd-a741ec8088f13bdc328f054ecd649ac4174a18ac.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/Makefile9
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
3SUBDIR= options x509 3SUBDIR= options x509
4 4
5CLEANFILES+= testdsa.key testdsa.pem rsakey.pem rsacert.pem dsa512.pem 5CLEANFILES+= testdsa.key testdsa.pem rsakey.pem rsacert.pem dsa512.pem
6CLEANFILES+= appstest_dir 6CLEANFILES+= appstest_dir
7 7
8REGRESS_TARGETS=ssl-enc ssl-dsa ssl-rsa appstest speed 8REGRESS_TARGETS=ssl-enc ssl-dsa ssl-rsa appstest
9REGRESS_SLOW_TARGETS=speed
10 9
11OPENSSL=/usr/bin/openssl 10OPENSSL=/usr/bin/openssl
12CLEAR1=p 11CLEAR1=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}
61appstest: 60appstest:
62 env OPENSSL=${OPENSSL} sh ${.CURDIR}/appstest.sh -q 61 env OPENSSL=${OPENSSL} sh ${.CURDIR}/appstest.sh -q
63speed:
64.for offset in 0 3
65 ${OPENSSL} speed -unaligned ${offset}
66.endfor
67 62
68clean: 63clean:
69 rm -rf ${CLEANFILES} 64 rm -rf ${CLEANFILES}