summaryrefslogtreecommitdiff
path: root/regress/unittests
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2016-08-23 16:33:48 +1000
committerDamien Miller <djm@mindrot.org>2016-08-23 16:33:48 +1000
commit6ee4f1c01ee31e65245881d49d4bccf014956066 (patch)
tree2ad8d3a50f5dbff0edccf5778eb0aee8e3763d3c /regress/unittests
parent114efe2bc0dd2842d997940a833f115e6fc04854 (diff)
hook match and utf8 unittests up to Makefile
Diffstat (limited to 'regress/unittests')
-rw-r--r--regress/unittests/match/tests.c4
-rw-r--r--regress/unittests/utf8/tests.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/regress/unittests/match/tests.c b/regress/unittests/match/tests.c
index aaca546bf..44b89a586 100644
--- a/regress/unittests/match/tests.c
+++ b/regress/unittests/match/tests.c
@@ -5,6 +5,8 @@
5 * Placed in the public domain 5 * Placed in the public domain
6 */ 6 */
7 7
8#include "includes.h"
9
8#include <sys/types.h> 10#include <sys/types.h>
9#include <sys/param.h> 11#include <sys/param.h>
10#include <stdio.h> 12#include <stdio.h>
@@ -12,7 +14,7 @@
12#include <stdlib.h> 14#include <stdlib.h>
13#include <string.h> 15#include <string.h>
14 16
15#include "test_helper.h" 17#include "../test_helper/test_helper.h"
16 18
17#include "match.h" 19#include "match.h"
18 20
diff --git a/regress/unittests/utf8/tests.c b/regress/unittests/utf8/tests.c
index fad2ec279..6d06fa182 100644
--- a/regress/unittests/utf8/tests.c
+++ b/regress/unittests/utf8/tests.c
@@ -6,10 +6,12 @@
6 * and placed in the public domain. 6 * and placed in the public domain.
7 */ 7 */
8 8
9#include "includes.h"
10
9#include <locale.h> 11#include <locale.h>
10#include <string.h> 12#include <string.h>
11 13
12#include "test_helper.h" 14#include "../test_helper/test_helper.h"
13 15
14#include "utf8.h" 16#include "utf8.h"
15 17