Small change in pkt compare function.

This commit is contained in:
Pedro Alvarez 2020-02-20 19:21:29 +00:00 committed by Andre Puschmann
parent 5dd081846b
commit 830dffb05b
1 changed files with 1 additions and 3 deletions

View File

@ -32,9 +32,7 @@
int compare_two_packets(const srslte::unique_byte_buffer_t& msg1, const srslte::unique_byte_buffer_t& msg2) int compare_two_packets(const srslte::unique_byte_buffer_t& msg1, const srslte::unique_byte_buffer_t& msg2)
{ {
TESTASSERT(msg1->N_bytes == msg2->N_bytes); TESTASSERT(msg1->N_bytes == msg2->N_bytes);
for (uint32_t i = 0; i < msg1->N_bytes; ++i) { TESTASSERT(memcmp(msg1->msg, msg2->msg, msg1->N_bytes) == 0);
TESTASSERT(msg1->msg[i] == msg2->msg[i]);
}
return 0; return 0;
} }