diff options
author | Jason Evans <je@fb.com> | 2013-12-15 23:54:18 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2013-12-15 23:54:18 (GMT) |
commit | 5a658b9c7517d62fa39759f5ff6119d26dfc4cb7 (patch) | |
tree | ce400ab7753a39452f9f90c53b8518d8fc7ae972 /test/src | |
parent | 34779914400988922d36815b7085893fbcc89a2e (diff) | |
download | jemalloc-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.c | 2 |
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; } |