aboutsummaryrefslogtreecommitdiffstats
path: root/libosmocore/tests
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2010-02-20 20:14:01 +0100
committerHarald Welte <laforge@netfilter.org>2010-02-20 20:14:01 +0100
commit77562355627ee85cf2f913e8720bd35482b5fe09 (patch)
tree2892a0ca0b61564d0f514f8bf59d2320e5cecbd0 /libosmocore/tests
parent75135413cbae2bf2d4e7c93f6f329f8cb1964b18 (diff)
make sure libosmocom builds when cross-compiling for ARM without OS
This is required to build the library and be able to use it from within OsmocomBB.
Diffstat (limited to 'libosmocore/tests')
-rw-r--r--libosmocore/tests/timer/timer_test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libosmocore/tests/timer/timer_test.c b/libosmocore/tests/timer/timer_test.c
index ec29ef048..f1b4ad7fb 100644
--- a/libosmocore/tests/timer/timer_test.c
+++ b/libosmocore/tests/timer/timer_test.c
@@ -23,6 +23,8 @@
#include <osmocore/timer.h>
#include <osmocore/select.h>
+#include "../config.h"
+
static void timer_fired(unsigned long data);
static struct timer_list timer_one = {
@@ -64,7 +66,11 @@ int main(int argc, char** argv)
bsc_schedule_timer(&timer_two, 5, 0);
bsc_schedule_timer(&timer_three, 4, 0);
+#ifdef HAVE_SYS_SELECT_H
while (1) {
bsc_select_main(0);
}
+#else
+ printf("Select not supported on this platform!\n");
+#endif
}