Skip to content

Commit d08a1e2

Browse files
author
Marcin Maka
committed
test: ut: added more stubs for trace functions
Signed-off-by: Marcin Maka <marcin.maka@linux.intel.com>
1 parent 079558d commit d08a1e2

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

  • test/cmocka/src/lib/alloc

test/cmocka/src/lib/alloc/mock.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,23 @@ void _trace_event_mbox_atomic1(uint32_t log_entry, uint32_t param)
6666
(void)param;
6767
}
6868

69+
void _trace_event_mbox_atomic2(uint32_t log_entry, uint32_t param1,
70+
uint32_t param2)
71+
{
72+
(void)log_entry;
73+
(void)param1;
74+
(void)param2;
75+
}
76+
77+
void _trace_event_mbox_atomic3(uint32_t log_entry, uint32_t param1,
78+
uint32_t param2, uint32_t param3)
79+
{
80+
(void)log_entry;
81+
(void)param1;
82+
(void)param2;
83+
(void)param3;
84+
}
85+
6986
void trace_flush(void)
7087
{
7188
}

0 commit comments

Comments
 (0)