From 0b9377ac378bdbcb37a45c6ad8b0763d9f2c891b Mon Sep 17 00:00:00 2001 From: "Douglas B. Rumbaugh" Date: Sun, 2 Nov 2025 15:38:02 -0500 Subject: Removed debug print statement --- tests/liballoc_tests.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests') diff --git a/tests/liballoc_tests.c b/tests/liballoc_tests.c index 235656d..ad9635f 100644 --- a/tests/liballoc_tests.c +++ b/tests/liballoc_tests.c @@ -69,14 +69,12 @@ START_TEST(unaligned_allocation) { /* ensure first allocation is aligned */ void *first_memory = allocate(unaligned_size); size_t first_alignment = (size_t) first_memory % ALIGNMENT; - fprintf(stderr, "ALIGNMENT: %ld\n", first_alignment); ck_assert_int_eq(first_alignment, 0); /* now allocate several more times--each allocation should be aligned */ for (size_t i=0; i<10; i++) { void *memory = allocate(unaligned_size); size_t alignment = (size_t) memory % ALIGNMENT; - fprintf(stderr, "ALIGNMENT: %ld\n", alignment); ck_assert_int_eq(alignment, 0); /* just leak the memory--we aren't testing release here */ -- cgit v1.2.3