summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2016-11-04 19:45:12 +0000
committerjsing <>2016-11-04 19:45:12 +0000
commit487c3b44b19dd599065dbca3423c0ecedafe889c (patch)
tree60bf511dad330deec7c994bbb79706fa5c6160e6 /src
parent923e520bf2575724ab423e4729c60931be0412ba (diff)
downloadopenbsd-487c3b44b19dd599065dbca3423c0ecedafe889c.tar.gz
openbsd-487c3b44b19dd599065dbca3423c0ecedafe889c.tar.bz2
openbsd-487c3b44b19dd599065dbca3423c0ecedafe889c.zip
Move pqueue regress from libcrypto to libssl, since that's where the pqueue
code now lives. Also unbreak the regress following the symbol hiding changes in libssl.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/Makefile3
-rw-r--r--src/regress/lib/libssl/Makefile3
-rw-r--r--src/regress/lib/libssl/pqueue/Makefile (renamed from src/regress/lib/libcrypto/pqueue/Makefile)4
-rw-r--r--src/regress/lib/libssl/pqueue/expected.txt (renamed from src/regress/lib/libcrypto/pqueue/expected.txt)0
-rw-r--r--src/regress/lib/libssl/pqueue/pq_test.c (renamed from src/regress/lib/libcrypto/pqueue/pq_test.c)0
5 files changed, 5 insertions, 5 deletions
diff --git a/src/regress/lib/libcrypto/Makefile b/src/regress/lib/libcrypto/Makefile
index a82ae259ea..dc11c60e92 100644
--- a/src/regress/lib/libcrypto/Makefile
+++ b/src/regress/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.23 2016/07/04 23:43:30 beck Exp $ 1# $OpenBSD: Makefile,v 1.24 2016/11/04 19:45:12 jsing Exp $
2 2
3SUBDIR= \ 3SUBDIR= \
4 aead \ 4 aead \
@@ -31,7 +31,6 @@ SUBDIR= \
31 pbkdf2 \ 31 pbkdf2 \
32 pkcs7 \ 32 pkcs7 \
33 poly1305 \ 33 poly1305 \
34 pqueue \
35 rand \ 34 rand \
36 rc2 \ 35 rc2 \
37 rc4 \ 36 rc4 \
diff --git a/src/regress/lib/libssl/Makefile b/src/regress/lib/libssl/Makefile
index 79232bcf39..85e50ecb04 100644
--- a/src/regress/lib/libssl/Makefile
+++ b/src/regress/lib/libssl/Makefile
@@ -1,10 +1,11 @@
1# $OpenBSD: Makefile,v 1.23 2015/09/01 17:02:17 jsing Exp $ 1# $OpenBSD: Makefile,v 1.24 2016/11/04 19:45:12 jsing Exp $
2 2
3SUBDIR= \ 3SUBDIR= \
4 asn1 \ 4 asn1 \
5 bytestring \ 5 bytestring \
6 ciphers \ 6 ciphers \
7 client \ 7 client \
8 pqueue \
8 ssl \ 9 ssl \
9 unit 10 unit
10 11
diff --git a/src/regress/lib/libcrypto/pqueue/Makefile b/src/regress/lib/libssl/pqueue/Makefile
index f20fafe1ec..48c2cb7e61 100644
--- a/src/regress/lib/libcrypto/pqueue/Makefile
+++ b/src/regress/lib/libssl/pqueue/Makefile
@@ -1,10 +1,10 @@
1# $OpenBSD: Makefile,v 1.7 2016/09/02 17:02:53 beck Exp $ 1# $OpenBSD: Makefile,v 1.1 2016/11/04 19:45:12 jsing Exp $
2 2
3PROG= pq_test 3PROG= pq_test
4SRC= ${.CURDIR}/../../../../lib/libssl 4SRC= ${.CURDIR}/../../../../lib/libssl
5CFLAGS+= -I${SRC} 5CFLAGS+= -I${SRC}
6 6
7LDADD= -lssl -lcrypto 7LDADD= ${SSL_INT} -lcrypto
8DPADD= ${LIBSSL} ${LIBCRYPTO} 8DPADD= ${LIBSSL} ${LIBCRYPTO}
9WARNINGS= Yes 9WARNINGS= Yes
10CFLAGS+= -DLIBRESSL_INTERNAL -Werror 10CFLAGS+= -DLIBRESSL_INTERNAL -Werror
diff --git a/src/regress/lib/libcrypto/pqueue/expected.txt b/src/regress/lib/libssl/pqueue/expected.txt
index c59d6cd838..c59d6cd838 100644
--- a/src/regress/lib/libcrypto/pqueue/expected.txt
+++ b/src/regress/lib/libssl/pqueue/expected.txt
diff --git a/src/regress/lib/libcrypto/pqueue/pq_test.c b/src/regress/lib/libssl/pqueue/pq_test.c
index a078ba5366..a078ba5366 100644
--- a/src/regress/lib/libcrypto/pqueue/pq_test.c
+++ b/src/regress/lib/libssl/pqueue/pq_test.c