From 460accf9be077f376baebd93a39c214644442674 Mon Sep 17 00:00:00 2001 From: Trevor Norris Date: Fri, 3 Mar 2023 13:52:31 -0700 Subject: [PATCH] test: make valgrind happy (#3916) Missing a call to MAKE_VALGRIND_HAPPY() to silence valgrind output. --- test/test-fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test-fs.c b/test/test-fs.c index fd2b651c..ec823f11 100644 --- a/test/test-fs.c +++ b/test/test-fs.c @@ -4513,6 +4513,7 @@ TEST_IMPL(fs_statfs) { uv_run(loop, UV_RUN_DEFAULT); ASSERT(statfs_cb_count == 2); + MAKE_VALGRIND_HAPPY(); return 0; }