summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-09-27 23:58:06 +0200
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-09-27 23:58:06 +0200
commitb5acbf914833a83368e51766de4cf2e2074a9436 (patch)
tree506246afa0804d83d13d4c68d4cf976283b5f10e /test
parent0c994d54afbb734ed744330d4b03a653a8477fe3 (diff)
Reorganize local header files
Apart from public and internal header files, there is a third type called local header files, which are located next to source files in the source directory. Currently, they have different suffixes like '*_lcl.h', '*_local.h', or '*_int.h' This commit changes the different suffixes to '*_local.h' uniformly. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9681)
Diffstat (limited to 'test')
-rw-r--r--test/asynciotest.c2
-rw-r--r--test/bad_dtls_test.c2
-rw-r--r--test/cipher_overhead_test.c2
-rw-r--r--test/clienthellotest.c2
-rw-r--r--test/constant_time_test.c2
-rw-r--r--test/curve448_internal_test.c2
-rw-r--r--test/drbg_cavs_test.c2
-rw-r--r--test/drbgtest.c2
-rw-r--r--test/dtls_mtu_test.c2
-rw-r--r--test/ec_internal_test.c2
-rw-r--r--test/handshake_helper.c2
-rw-r--r--test/modes_internal_test.c2
-rw-r--r--test/packettest.c2
-rw-r--r--test/servername_test.c2
-rw-r--r--test/ssl_cert_table_internal_test.c2
-rw-r--r--test/sslapitest.c2
-rw-r--r--test/sslbuffertest.c2
-rw-r--r--test/tls13ccstest.c2
-rw-r--r--test/tls13encryptiontest.c4
-rw-r--r--test/tls13secretstest.c2
-rw-r--r--test/wpackettest.c2
21 files changed, 22 insertions, 22 deletions
diff --git a/test/asynciotest.c b/test/asynciotest.c
index 5e85cbb044..5a12d01344 100644
--- a/test/asynciotest.c
+++ b/test/asynciotest.c
@@ -13,7 +13,7 @@
#include <openssl/bio.h>
#include <openssl/err.h>
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#include "ssltestlib.h"
#include "testutil.h"
diff --git a/test/bad_dtls_test.c b/test/bad_dtls_test.c
index 1c836b9c17..e06206b6ac 100644
--- a/test/bad_dtls_test.c
+++ b/test/bad_dtls_test.c
@@ -37,7 +37,7 @@
#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/kdf.h>
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#include "internal/nelem.h"
#include "testutil.h"
diff --git a/test/cipher_overhead_test.c b/test/cipher_overhead_test.c
index f8c6fd738e..2275fceda0 100644
--- a/test/cipher_overhead_test.c
+++ b/test/cipher_overhead_test.c
@@ -15,7 +15,7 @@
# pragma names as_is,shortened
#endif
-#include "../ssl/ssl_locl.h"
+#include "../ssl/ssl_local.h"
#ifdef __VMS
# pragma names restore
diff --git a/test/clienthellotest.c b/test/clienthellotest.c
index 862ca9ff6c..8ae1e4d9c6 100644
--- a/test/clienthellotest.c
+++ b/test/clienthellotest.c
@@ -17,7 +17,7 @@
#include <openssl/err.h>
#include <time.h>
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#include "testutil.h"
diff --git a/test/constant_time_test.c b/test/constant_time_test.c
index e5e3e497c0..25f5392801 100644
--- a/test/constant_time_test.c
+++ b/test/constant_time_test.c
@@ -11,7 +11,7 @@
#include <stdlib.h>
#include "internal/nelem.h"
-#include "internal/constant_time_locl.h"
+#include "internal/constant_time.h"
#include "testutil.h"
#include "internal/numbers.h"
diff --git a/test/curve448_internal_test.c b/test/curve448_internal_test.c
index e7d4378527..4b65ee3fad 100644
--- a/test/curve448_internal_test.c
+++ b/test/curve448_internal_test.c
@@ -16,7 +16,7 @@
# pragma names as_is,shortened
#endif
-#include "curve448_lcl.h"
+#include "curve448_local.h"
#ifdef __VMS
# pragma names restore
diff --git a/test/drbg_cavs_test.c b/test/drbg_cavs_test.c
index eea387b4f9..4573e2b0b7 100644
--- a/test/drbg_cavs_test.c
+++ b/test/drbg_cavs_test.c
@@ -15,7 +15,7 @@
#include <openssl/obj_mac.h>
#include <openssl/evp.h>
#include <openssl/aes.h>
-#include "../crypto/rand/rand_lcl.h"
+#include "../crypto/rand/rand_local.h"
#include "testutil.h"
#include "drbg_cavs_data.h"
diff --git a/test/drbgtest.c b/test/drbgtest.c
index 9f04a68f0e..2aff4aaf03 100644
--- a/test/drbgtest.c
+++ b/test/drbgtest.c
@@ -15,7 +15,7 @@
#include <openssl/obj_mac.h>
#include <openssl/evp.h>
#include <openssl/aes.h>
-#include "../crypto/rand/rand_lcl.h"
+#include "../crypto/rand/rand_local.h"
#include "../include/crypto/rand.h"
#if defined(_WIN32)
diff --git a/test/dtls_mtu_test.c b/test/dtls_mtu_test.c
index 3aa519f156..f20edf02d2 100644
--- a/test/dtls_mtu_test.c
+++ b/test/dtls_mtu_test.c
@@ -18,7 +18,7 @@
#include "testutil.h"
/* for SSL_READ_ETM() */
-#include "../ssl/ssl_locl.h"
+#include "../ssl/ssl_local.h"
static int debug = 0;
diff --git a/test/ec_internal_test.c b/test/ec_internal_test.c
index 8d3a4fdd67..4b849312be 100644
--- a/test/ec_internal_test.c
+++ b/test/ec_internal_test.c
@@ -10,7 +10,7 @@
#include "internal/nelem.h"
#include "testutil.h"
#include <openssl/ec.h>
-#include "ec_lcl.h"
+#include "ec_local.h"
#include <openssl/objects.h>
static size_t crv_len = 0;
diff --git a/test/handshake_helper.c b/test/handshake_helper.c
index 27ff794014..1742004b5b 100644
--- a/test/handshake_helper.c
+++ b/test/handshake_helper.c
@@ -16,7 +16,7 @@
#include <openssl/srp.h>
#endif
-#include "../ssl/ssl_locl.h"
+#include "../ssl/ssl_local.h"
#include "internal/sockets.h"
#include "internal/nelem.h"
#include "handshake_helper.h"
diff --git a/test/modes_internal_test.c b/test/modes_internal_test.c
index e0f1adf6af..a0fa86e623 100644
--- a/test/modes_internal_test.c
+++ b/test/modes_internal_test.c
@@ -14,7 +14,7 @@
#include <openssl/aes.h>
#include <openssl/modes.h>
-#include "../crypto/modes/modes_lcl.h"
+#include "../crypto/modes/modes_local.h"
#include "testutil.h"
#include "internal/nelem.h"
diff --git a/test/packettest.c b/test/packettest.c
index e58d8d8bcf..6c82d04414 100644
--- a/test/packettest.c
+++ b/test/packettest.c
@@ -7,7 +7,7 @@
* https://www.openssl.org/source/license.html
*/
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#include "testutil.h"
#define BUF_LEN 255
diff --git a/test/servername_test.c b/test/servername_test.c
index d246918d66..39f6b2002f 100644
--- a/test/servername_test.c
+++ b/test/servername_test.c
@@ -18,7 +18,7 @@
#include <openssl/err.h>
#include <time.h>
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#include "testutil.h"
#include "internal/nelem.h"
diff --git a/test/ssl_cert_table_internal_test.c b/test/ssl_cert_table_internal_test.c
index 2104e8c516..cb1e076bce 100644
--- a/test/ssl_cert_table_internal_test.c
+++ b/test/ssl_cert_table_internal_test.c
@@ -21,7 +21,7 @@
# pragma names as_is,shortened
#endif
-#include "../ssl/ssl_locl.h"
+#include "../ssl/ssl_local.h"
#include "../ssl/ssl_cert_table.h"
#ifdef __VMS
diff --git a/test/sslapitest.c b/test/sslapitest.c
index 7a142268fa..76a8ca23da 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -22,7 +22,7 @@
#include "testutil.h"
#include "testutil/output.h"
#include "internal/nelem.h"
-#include "../ssl/ssl_locl.h"
+#include "../ssl/ssl_local.h"
#ifndef OPENSSL_NO_TLS1_3
diff --git a/test/sslbuffertest.c b/test/sslbuffertest.c
index b8b1f52dde..b5f815f7db 100644
--- a/test/sslbuffertest.c
+++ b/test/sslbuffertest.c
@@ -13,7 +13,7 @@
#include <openssl/bio.h>
#include <openssl/err.h>
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#include "ssltestlib.h"
#include "testutil.h"
diff --git a/test/tls13ccstest.c b/test/tls13ccstest.c
index 92e9d598ca..1633d3afe5 100644
--- a/test/tls13ccstest.c
+++ b/test/tls13ccstest.c
@@ -11,7 +11,7 @@
#include <string.h>
#include "ssltestlib.h"
#include "testutil.h"
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
static char *cert = NULL;
static char *privkey = NULL;
diff --git a/test/tls13encryptiontest.c b/test/tls13encryptiontest.c
index 6f359b3a2f..479ff4105e 100644
--- a/test/tls13encryptiontest.c
+++ b/test/tls13encryptiontest.c
@@ -15,8 +15,8 @@
# pragma names as_is,shortened
#endif
-#include "../ssl/ssl_locl.h"
-#include "../ssl/record/record_locl.h"
+#include "../ssl/ssl_local.h"
+#include "../ssl/record/record_local.h"
#ifdef __VMS
# pragma names restore
diff --git a/test/tls13secretstest.c b/test/tls13secretstest.c
index 9368b1cdc5..52fc2b6673 100644
--- a/test/tls13secretstest.c
+++ b/test/tls13secretstest.c
@@ -15,7 +15,7 @@
# pragma names as_is,shortened
#endif
-#include "../ssl/ssl_locl.h"
+#include "../ssl/ssl_local.h"
#ifdef __VMS
# pragma names restore
diff --git a/test/wpackettest.c b/test/wpackettest.c
index 773eef0525..4c779c875c 100644
--- a/test/wpackettest.c
+++ b/test/wpackettest.c
@@ -15,7 +15,7 @@
# pragma names as_is,shortened
#endif
-#include "../ssl/packet_locl.h"
+#include "../ssl/packet_local.h"
#ifdef __VMS
# pragma names restore