aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-01-18 18:54:00 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2023-01-18 19:04:36 +0100
commit88955fb5506280a82860b026f8d7db9ad57bb504 (patch)
tree7224ed78844d412e84eba20a3b0d4391ac9f09aa /tests
parenta50ed5fda813eafa3a01bb998960d38ed11a3591 (diff)
Fix all references to config.h
config.h is created in $(top_buildir)/config.h. Let's make sure all CPPFLAGS add correct -Ipath includes, and that all code includes the correct file. Change-Id: Ie9ea38bb009bc715b01cde4d66d181f7bec2e7bd
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am2
-rw-r--r--tests/socket/socket_sctp_test.c2
-rw-r--r--tests/socket/socket_test.c2
-rw-r--r--tests/timer/timer_test.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index f0eaaca4..78666e9d 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir)
AM_CFLAGS = -Wall $(TALLOC_CFLAGS) $(PTHREAD_CFLAGS)
AM_LDFLAGS = -no-install
LDADD = $(top_builddir)/src/core/libosmocore.la $(TALLOC_LIBS) $(PTHREAD_LIBS)
diff --git a/tests/socket/socket_sctp_test.c b/tests/socket/socket_sctp_test.c
index b318fe5d..e099be92 100644
--- a/tests/socket/socket_sctp_test.c
+++ b/tests/socket/socket_sctp_test.c
@@ -31,7 +31,7 @@
#include <osmocom/core/logging.h>
#include <osmocom/core/bits.h>
-#include "../config.h"
+#include "config.h"
void *ctx = NULL;
diff --git a/tests/socket/socket_test.c b/tests/socket/socket_test.c
index b3b9584a..ddb69268 100644
--- a/tests/socket/socket_test.c
+++ b/tests/socket/socket_test.c
@@ -32,7 +32,7 @@
#include <osmocom/core/logging.h>
#include <osmocom/core/bits.h>
-#include "../config.h"
+#include "config.h"
void *ctx = NULL;
diff --git a/tests/timer/timer_test.c b/tests/timer/timer_test.c
index b06c7740..9c51ad94 100644
--- a/tests/timer/timer_test.c
+++ b/tests/timer/timer_test.c
@@ -29,7 +29,7 @@
#include <osmocom/core/select.h>
#include <osmocom/core/linuxlist.h>
-#include "../config.h"
+#include "config.h"
static void main_timer_fired(void *data);
static void secondary_timer_fired(void *data);