diff options
author | Pauli <paul.dale@oracle.com> | 2017-08-18 01:50:25 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-08-18 01:50:25 +0200 |
commit | b99fe5f4927b305bae88daac2484c284fe749329 (patch) | |
tree | 0497ffa8a2d0e0ea72ecca5d32d6878888835fd4 /test/danetest.c | |
parent | Clear outputs in PKCS12_parse error handling. (diff) | |
download | openssl-b99fe5f4927b305bae88daac2484c284fe749329.tar.xz openssl-b99fe5f4927b305bae88daac2484c284fe749329.zip |
Remove tests dependence on e_os.h
Apart from ssltest_old.c, the test suite relied on e_os.h for the
OSSL_NELEM macro and nothing else.
The ssltest_old.c also requires EXIT and some socket macros.
Create a new header to define the OSSL_NELEM macro and use that instead.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4186)
Diffstat (limited to 'test/danetest.c')
-rw-r--r-- | test/danetest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/danetest.c b/test/danetest.c index d21f554c7e..de51c83f56 100644 --- a/test/danetest.c +++ b/test/danetest.c @@ -24,7 +24,7 @@ #endif #include "testutil.h" -#include "e_os.h" +#include <internal/nelem.h> #define _UC(c) ((unsigned char)(c)) |