On 6/9/24 15:12, Philippe Mathieu-Daudé wrote:
Replace reused bytes { 0x1, 0x2, 0x3, 0x4 } by { 0x9, 0xa, 0xb, 0xc }
to be sure a different value is overwritten.

Signed-off-by: Philippe Mathieu-Daudé <phi...@linaro.org>
---
  tests/unit/test-fifo.c | 12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)


@@ -157,8 +157,8 @@ static void test_fifo8_peek_buf_wrap(void)
  {
      Fifo8 fifo;
      uint8_t data_in1[] = { 0x1, 0x2, 0x3, 0x4 };
-    uint8_t data_in2[] = { 0x5, 0x6, 0x7, 0x8, 0x1, 0x2, 0x3, 0x4 };
+    uint8_t data_in2[] = { 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb, 0xc };

-    uint8_t data_out[4];
+    uint8_t data_out[8];

Since this part belongs to the next patch, I'll respin a v2.

      int count;
fifo8_create(&fifo, 8);


Reply via email to