From 0d0108e954124a302e959cb0f2d2200aa12319bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Tue, 22 Jul 2025 00:17:43 +0200 Subject: [PATCH] test: spa-utils: utils_snprintf_abort_neg_size: remove valgrind check Death tests are always skipped by the framework when running on valgrind, so there is no need for the check. --- test/test-spa-utils.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/test-spa-utils.c b/test/test-spa-utils.c index 06b8f8d17..43c2ffa2c 100644 --- a/test/test-spa-utils.c +++ b/test/test-spa-utils.c @@ -853,9 +853,6 @@ PWTEST(utils_snprintf_abort_neg_size) size_t size = pwtest_get_iteration(current_test); char dest[8]; - if (RUNNING_ON_VALGRIND) - return PWTEST_SKIP; - spa_scnprintf(dest, size, "1234"); /* expected to abort() */ return PWTEST_FAIL;