summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2011-03-22 16:36:13 +0100
committerHarald Welte <laforge@gnumonks.org>2011-03-23 18:09:28 +0100
commit834193484439acd6056a891e9b2df5992a370088 (patch)
treee31e73e1364119617416273610f7b851c89d25c4 /tests
parentfba495e5f6084800c076e0ecae990ed9e6483530 (diff)
include: reorganize headers file to include/osmocom/[gsm|core]
This patch moves all GSM-specific definitions to include/osmocom/gsm. Moreover, the headers in include/osmocore/ have been moved to include/osmocom/core. This has been proposed by Harald Welte and Sylvain Munaunt. Tested with `make distcheck'. Signed-off-by: Pablo Neira Ayuso <pablo@gnumonks.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/msgfile/msgfile_test.c2
-rw-r--r--tests/sms/sms_test.c6
-rw-r--r--tests/smscb/smscb_test.c2
-rw-r--r--tests/timer/timer_test.c4
-rw-r--r--tests/ussd/ussd_test.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/tests/msgfile/msgfile_test.c b/tests/msgfile/msgfile_test.c
index a82ac516..4637ceab 100644
--- a/tests/msgfile/msgfile_test.c
+++ b/tests/msgfile/msgfile_test.c
@@ -19,7 +19,7 @@
*
*/
-#include <osmocore/msgfile.h>
+#include <osmocom/core/msgfile.h>
#include <stdio.h>
diff --git a/tests/sms/sms_test.c b/tests/sms/sms_test.c
index 9d87b5bc..f5d82b99 100644
--- a/tests/sms/sms_test.c
+++ b/tests/sms/sms_test.c
@@ -23,9 +23,9 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
-#include <osmocore/msgb.h>
-#include <osmocore/gsm_utils.h>
-#include <osmocore/utils.h>
+#include <osmocom/core/msgb.h>
+#include <osmocom/gsm/gsm_utils.h>
+#include <osmocom/core/utils.h>
struct test_case {
const uint8_t *input;
diff --git a/tests/smscb/smscb_test.c b/tests/smscb/smscb_test.c
index 627d5a13..e10e12d8 100644
--- a/tests/smscb/smscb_test.c
+++ b/tests/smscb/smscb_test.c
@@ -18,7 +18,7 @@
*
*/
-#include <osmocore/protocol/gsm_03_41.h>
+#include <osmocom/gsm/protocol/gsm_03_41.h>
#include <stdio.h>
diff --git a/tests/timer/timer_test.c b/tests/timer/timer_test.c
index 1b458d81..30b08ad0 100644
--- a/tests/timer/timer_test.c
+++ b/tests/timer/timer_test.c
@@ -20,8 +20,8 @@
#include <stdio.h>
-#include <osmocore/timer.h>
-#include <osmocore/select.h>
+#include <osmocom/core/timer.h>
+#include <osmocom/core/select.h>
#include "../../config.h"
diff --git a/tests/ussd/ussd_test.c b/tests/ussd/ussd_test.c
index bddbbcb7..6d2a8c9b 100644
--- a/tests/ussd/ussd_test.c
+++ b/tests/ussd/ussd_test.c
@@ -19,7 +19,7 @@
*
*/
-#include <osmocore/gsm0480.h>
+#include <osmocom/gsm/gsm0480.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>