Index: tests/alloc2.cfa
===================================================================
--- tests/alloc2.cfa	(revision 943a0790fa3013aaf65a0d2e653700b57b68354a)
+++ tests/alloc2.cfa	(revision 1b55756f074813c01db481a4334fcf7977f48b0d)
@@ -13,4 +13,5 @@
 void test_base( void * ip, size_t size, size_t align) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = (malloc_size(ip) == size) && (malloc_usable_size(ip) >= size) && (malloc_alignment(ip) == align) && ((uintptr_t)ip % align  == 0);
 	if (!passed) {
@@ -18,8 +19,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_fill( void * ip_, size_t start, size_t end, char fill) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = true;
 	char * ip = (char *) ip_;
@@ -29,8 +32,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_fill( void * ip_, size_t start, size_t end, int fill) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = true;
 	int * ip = (int *) ip_;
@@ -40,8 +45,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_fill( void * ip_, size_t start, size_t end, int * fill) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = (memcmp((void*)((uintptr_t)ip_ + start), (void*)fill, end) == 0);
 	if (!passed) {
@@ -49,8 +56,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_fill( void * ip_, size_t start, size_t end, T1 fill) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = true;
 	T1 * ip = (T1 *) ip_;
@@ -60,8 +69,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_fill( void * ip_, size_t start, size_t end, T1 * fill) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = (memcmp((void*)((uintptr_t)ip_ + start), (void*)fill, end) == 0);
 	if (!passed) {
@@ -69,8 +80,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_use( int * ip, size_t dim) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = true;
 	for (i; 0 ~ dim) ip[i] = 0xdeadbeef;
@@ -80,8 +93,10 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
 void test_use( T1 * ip, size_t dim) {
 	tests_total += 1;
+//	printf("DEBUG: starting test %d\n", tests_total);
 	bool passed = true;
 	for (i; 0 ~ dim) ip[i].data = 0xdeadbeef;
@@ -91,4 +106,5 @@
 		tests_failed += 1;
 	}
+//	printf("DEBUG: done test %d\n", tests_total);
 }
 
