diff options
author | jsing <> | 2016-11-04 19:45:12 +0000 |
---|---|---|
committer | jsing <> | 2016-11-04 19:45:12 +0000 |
commit | 52b13e057580dc493876cd2725b67a4ba85a8c88 (patch) | |
tree | 60bf511dad330deec7c994bbb79706fa5c6160e6 | |
parent | 8d8efa38bd41538db6d565bf25bc49b76a253a26 (diff) | |
download | openbsd-52b13e057580dc493876cd2725b67a4ba85a8c88.tar.gz openbsd-52b13e057580dc493876cd2725b67a4ba85a8c88.tar.bz2 openbsd-52b13e057580dc493876cd2725b67a4ba85a8c88.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.
-rw-r--r-- | src/regress/lib/libcrypto/Makefile | 3 | ||||
-rw-r--r-- | src/regress/lib/libssl/Makefile | 3 | ||||
-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 | ||
3 | SUBDIR= \ | 3 | SUBDIR= \ |
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 | ||
3 | SUBDIR= \ | 3 | SUBDIR= \ |
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 | ||
3 | PROG= pq_test | 3 | PROG= pq_test |
4 | SRC= ${.CURDIR}/../../../../lib/libssl | 4 | SRC= ${.CURDIR}/../../../../lib/libssl |
5 | CFLAGS+= -I${SRC} | 5 | CFLAGS+= -I${SRC} |
6 | 6 | ||
7 | LDADD= -lssl -lcrypto | 7 | LDADD= ${SSL_INT} -lcrypto |
8 | DPADD= ${LIBSSL} ${LIBCRYPTO} | 8 | DPADD= ${LIBSSL} ${LIBCRYPTO} |
9 | WARNINGS= Yes | 9 | WARNINGS= Yes |
10 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror | 10 | CFLAGS+= -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 | |||