summaryrefslogtreecommitdiff
path: root/deps/jemalloc/test/unit/mq.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/test/unit/mq.c')
-rw-r--r--deps/jemalloc/test/unit/mq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/jemalloc/test/unit/mq.c b/deps/jemalloc/test/unit/mq.c
index f57e96af1..bde2a480b 100644
--- a/deps/jemalloc/test/unit/mq.c
+++ b/deps/jemalloc/test/unit/mq.c
@@ -54,7 +54,7 @@ thd_sender_start(void *arg)
mq_msg_t *msg;
void *p;
p = mallocx(sizeof(mq_msg_t), 0);
- assert_ptr_not_null(p, "Unexpected allocm() failure");
+ assert_ptr_not_null(p, "Unexpected mallocx() failure");
msg = (mq_msg_t *)p;
mq_put(mq, msg);
}
@@ -85,6 +85,7 @@ TEST_END
int
main(void)
{
+
return (test(
test_mq_basic,
test_mq_threaded));