From 27299a5c47cb4bc87a222004fd245577a6946caa Mon Sep 17 00:00:00 2001 From: hathach Date: Thu, 14 May 2020 15:39:42 +0700 Subject: [PATCH] add test for fifo size --- test/test/test_fifo.c | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/test/test/test_fifo.c b/test/test/test_fifo.c index 1be839268..b6c22f569 100644 --- a/test/test/test_fifo.c +++ b/test/test/test_fifo.c @@ -54,6 +54,32 @@ void test_normal(void) } } +void test_item_size(void) +{ + TU_FIFO_DEF(ff4, FIFO_SIZE, uint32_t, false); + tu_fifo_clear(&ff4); + + uint32_t data[20]; + for(uint32_t i=0; i 4 + rd_count = tu_fifo_read_n(&ff4, rd, 5); + TEST_ASSERT_EQUAL( 5, rd_count ); + TEST_ASSERT_EQUAL_UINT32_ARRAY( data, rd, rd_count ); // 0 -> 4 + + tu_fifo_write_n(&ff4, data+10, 5); + + // read 5 -> 14 + rd_count = tu_fifo_read_n(&ff4, rd, 10); + TEST_ASSERT_EQUAL( 10, rd_count ); + TEST_ASSERT_EQUAL_UINT32_ARRAY( data+5, rd, rd_count ); // 5 -> 14 +} + void test_read_n(void) { // prepare data @@ -66,7 +92,7 @@ void test_read_n(void) uint16_t rd_count; // case 1: Read index + count < depth - // read 0 -> 5 + // read 0 -> 4 rd_count = tu_fifo_read_n(&ff, rd, 5); TEST_ASSERT_EQUAL( 5, rd_count ); TEST_ASSERT_EQUAL_MEMORY( data, rd, rd_count ); // 0 -> 4