Attention is currently required from: Edward O'Callaghan, Angel Pons, Anastasia Klimchuk.
2 comments:
Patchset:
The C `if` is generally much preferred over the CPP `#if`.
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: […]
or
if (!CONFIG_DUMMY)
return;
To view, visit change 55295. To unsubscribe, or for help writing mail filters, visit settings.