aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-01-09 14:07:53 +0100
committerdexter <pmaier@sysmocom.de>2018-01-10 11:10:28 +0000
commit5df57cb84c83546a7c23135845deb8bf615819c1 (patch)
tree4705fe87b479d1633379146896154675e762a2fc /tests
parentef8cdfbacb40dffc78ee7ffde146d4eeceb63caf (diff)
meas_test: fix header file references
The unittest module meas_test.c contains a lot of unused header files as the result of a cut and paste error made earlier. Also the reference to stdio.h is missing. remove all header file references that are not needed. add missing header reference to stdio.h Change-Id: I167be096ed25a86b1114de1ada955822a0b42856
Diffstat (limited to 'tests')
-rw-r--r--tests/meas/meas_test.c27
1 files changed, 1 insertions, 26 deletions
diff --git a/tests/meas/meas_test.c b/tests/meas/meas_test.c
index acebab56..a283c476 100644
--- a/tests/meas/meas_test.c
+++ b/tests/meas/meas_test.c
@@ -1,37 +1,12 @@
+#include <stdio.h>
#include <stdint.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <getopt.h>
-#include <limits.h>
-#include <sched.h>
-#include <sys/signal.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <sys/ioctl.h>
-
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <net/if.h>
#include <osmocom/core/talloc.h>
#include <osmocom/core/application.h>
-#include <osmocom/vty/telnet_interface.h>
-#include <osmocom/vty/logging.h>
-#include <osmocom/core/gsmtap.h>
-#include <osmocom/core/gsmtap_util.h>
-#include <osmocom/core/bits.h>
-#include <osmocom/core/backtrace.h>
-#include <osmocom/abis/abis.h>
#include <osmo-bts/gsm_data.h>
#include <osmo-bts/logging.h>
-#include <osmo-bts/abis.h>
#include <osmo-bts/bts.h>
-#include <osmo-bts/vty.h>
-#include <osmo-bts/bts_model.h>
-#include <osmo-bts/pcu_if.h>
-#include <osmo-bts/l1sap.h>
#include <osmo-bts/measurement.h>
static struct gsm_bts *bts;