Attention is currently required from: Nico Huber, Edward O'Callaghan, Anastasia Klimchuk.
Patch set 1:Code-Review +1
1 comment:
File tests/init_shutdown.c:
#if CONFIG_DUMMY == 1
void dummy_init_and_shutdown_test_success(void **state)
{
run_lifecycle(state, PROGRAMMER_DUMMY, "bus=parallel+lpc+fwh+spi");
}
#endif /* CONFIG_DUMMY */
You could try if this works:
void dummy_init_and_shutdown_test_success(void **state)
{
if (CONFIG_DUMMY)
run_lifecycle(state, PROGRAMMER_DUMMY, "bus=parallel+lpc+fwh+spi");
}
And do something similar for the other programmers.
To view, visit change 55295. To unsubscribe, or for help writing mail filters, visit settings.