Try to silence unused function warning in travis

This commit is contained in:
goldsimon 2018-01-05 21:12:31 +01:00
parent 8fc20142f7
commit c4867b878c

View File

@ -177,5 +177,9 @@ timers_suite(void)
/* TESTFUNC(test_bug52748), */
TESTFUNC(test_timers)
};
testfunc tests_unused[] = {
TESTFUNC(test_bug52748)
};
LWIP_UNUSED_ARG(tests_unused);
return create_suite("TIMERS", tests, LWIP_ARRAYSIZE(tests), timers_setup, timers_teardown);
}