aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-11-02 15:38:02 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-11-02 15:38:02 -0500
commit0b9377ac378bdbcb37a45c6ad8b0763d9f2c891b (patch)
tree4933430cca10f1c136d0af2a733f71b989fbcb65 /tests
parentdb7277df5ed4a0951698697b62afa823c3ba0d72 (diff)
downloadliballoc-0b9377ac378bdbcb37a45c6ad8b0763d9f2c891b.tar.gz
Removed debug print statement
Diffstat (limited to 'tests')
-rw-r--r--tests/liballoc_tests.c2
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 */