Add zero/align tests for rallocx().

This commit is contained in:
Jason Evans
2013-12-15 15:54:18 -08:00
parent 3477991440
commit 5a658b9c75
2 changed files with 122 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ test_skip(const char *format, ...)
va_start(ap, format);
malloc_vcprintf(NULL, NULL, format, ap);
va_end(ap);
malloc_printf("\n");
test_status = test_status_skip;
}
@@ -26,6 +27,7 @@ test_fail(const char *format, ...)
va_start(ap, format);
malloc_vcprintf(NULL, NULL, format, ap);
va_end(ap);
malloc_printf("\n");
test_status = test_status_fail;
}