aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-26 08:57:06 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-26 12:28:35 +0100
commit17436ce532fba87c07d02ca99d59ddaa65865862 (patch)
tree832eec3ca9ee29ad9b47d98fc089539d4eb57b94 /test
parent71a04cfca03bf6d5a93ad3ffd23e0fb9e0da2919 (diff)
downloadopenssl-17436ce532fba87c07d02ca99d59ddaa65865862.zip
openssl-17436ce532fba87c07d02ca99d59ddaa65865862.tar.gz
openssl-17436ce532fba87c07d02ca99d59ddaa65865862.tar.bz2
Normalise the include directives in ct_test.c
build.info needed a slight update, one more include directory. Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/build.info2
-rw-r--r--test/ct_test.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/test/build.info b/test/build.info
index e3b0ee4..4101b5e 100644
--- a/test/build.info
+++ b/test/build.info
@@ -204,7 +204,7 @@ INCLUDE[dtlsv1listentest]={- rel2abs(catdir($builddir,"../include")) -} .. ../in
DEPEND[dtlsv1listentest]=../libssl
SOURCE[ct_test]=ct_test.c
-INCLUDE[ct_test]={- rel2abs(catdir($builddir,"../include")) -} ../include
+INCLUDE[ct_test]={- rel2abs(catdir($builddir,"../include")) -} ../crypto/include ../include
DEPEND[ct_test]=../libcrypto
SOURCE[threadstest]=threadstest.c
diff --git a/test/ct_test.c b/test/ct_test.c
index cc01b13..dd0d8d2 100644
--- a/test/ct_test.c
+++ b/test/ct_test.c
@@ -58,12 +58,12 @@
#include <stdlib.h>
#include <string.h>
-#include "crypto/include/internal/ct_int.h"
-#include "openssl/err.h"
-#include "openssl/safestack.h"
-#include "openssl/ssl.h"
-#include "openssl/x509.h"
-#include "openssl/x509v3.h"
+#include "internal/ct_int.h"
+#include <openssl/err.h>
+#include <openssl/safestack.h>
+#include <openssl/ssl.h>
+#include <openssl/x509.h>
+#include <openssl/x509v3.h>
#include "testutil.h"
#if !defined(OPENSSL_NO_CT) && !defined(OPENSSL_NO_UNIT_TEST)