diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-11-02 15:38:02 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-11-02 15:38:02 -0500 |
| commit | 0b9377ac378bdbcb37a45c6ad8b0763d9f2c891b (patch) | |
| tree | 4933430cca10f1c136d0af2a733f71b989fbcb65 | |
| parent | db7277df5ed4a0951698697b62afa823c3ba0d72 (diff) | |
| download | liballoc-0b9377ac378bdbcb37a45c6ad8b0763d9f2c891b.tar.gz | |
Removed debug print statement
| -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 */ |