diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/liballoc_tests.c | 2 |
1 files changed, 0 insertions, 2 deletions
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 */ |