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.
This commit is contained in:
Barnabás Pőcze 2025-07-22 00:17:43 +02:00 committed by Wim Taymans
parent a50b66651e
commit 0d0108e954

View file

@ -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;