summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2013-12-15 23:54:18 (GMT)
committerJason Evans <je@fb.com>2013-12-15 23:54:18 (GMT)
commit5a658b9c7517d62fa39759f5ff6119d26dfc4cb7 (patch)
treece400ab7753a39452f9f90c53b8518d8fc7ae972 /test/src
parent34779914400988922d36815b7085893fbcc89a2e (diff)
downloadjemalloc-5a658b9c7517d62fa39759f5ff6119d26dfc4cb7.zip
jemalloc-5a658b9c7517d62fa39759f5ff6119d26dfc4cb7.tar.gz
jemalloc-5a658b9c7517d62fa39759f5ff6119d26dfc4cb7.tar.bz2
Add zero/align tests for rallocx().
Diffstat (limited to 'test/src')
-rw-r--r--test/src/test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/src/test.c b/test/src/test.c
index 74eb9dc..6552e37 100644
--- a/test/src/test.c
+++ b/test/src/test.c
@@ -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;
}