Skip to content

Commit

Permalink
test: disable dd_print()
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Jul 30, 2024
1 parent f468f99 commit f49d547
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/dd.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ static int test_dd_decode(void)
err = dd_decode(&dd, buf, sizeof(buf));
TEST_ERR(err);

printf("ok\n");

#if 0
dd_print(&dd);
#endif

ASSERT_EQ(1, dd.start_of_frame);
ASSERT_EQ(0, dd.end_of_frame);
Expand Down Expand Up @@ -269,7 +269,7 @@ static int test_dd_chrome(void)
err = dd_decode(&dd, buf, sizeof(buf));
TEST_ERR(err);

#if 1
#if 0
dd_print(&dd);
#endif

Expand Down

0 comments on commit f49d547

Please sign in to comment.