add more stub handlers to testee target
Prevent everything from crashing when exercising various commands.
This commit is contained in:
parent
070259cadb
commit
cdfdcb2854
|
@ -40,9 +40,29 @@ static int testee_init(struct command_context *cmd_ctx, struct target *target)
|
||||||
{
|
{
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
static int testee_poll(struct target *target)
|
||||||
|
{
|
||||||
|
return ERROR_OK;
|
||||||
|
}
|
||||||
|
static int testee_halt(struct target *target)
|
||||||
|
{
|
||||||
|
return ERROR_OK;
|
||||||
|
}
|
||||||
|
static int testee_reset_assert(struct target *target)
|
||||||
|
{
|
||||||
|
return ERROR_OK;
|
||||||
|
}
|
||||||
|
static int testee_reset_deassert(struct target *target)
|
||||||
|
{
|
||||||
|
return ERROR_OK;
|
||||||
|
}
|
||||||
struct target_type testee_target = {
|
struct target_type testee_target = {
|
||||||
.name = "testee",
|
.name = "testee",
|
||||||
.init_target = &testee_init,
|
|
||||||
.commands = testee_command_handlers,
|
.commands = testee_command_handlers,
|
||||||
|
|
||||||
|
.init_target = &testee_init,
|
||||||
|
.poll = &testee_poll,
|
||||||
|
.halt = &testee_halt,
|
||||||
|
.assert_reset = &testee_reset_assert,
|
||||||
|
.deassert_reset = &testee_reset_deassert,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue