From 00f3345b804165578dc0472263d666df9ef62981 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 6 Sep 2019 10:31:49 +1000 Subject: [PATCH] test: do run the util tests under valgrind These tests include string parsers, definitely want those to run under valgrind to detect OOB reads and writes. Signed-off-by: Peter Hutterer --- test/test-utils.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/test-utils.c b/test/test-utils.c index 0cde5aa5..9f13f2e5 100644 --- a/test/test-utils.c +++ b/test/test-utils.c @@ -1068,12 +1068,6 @@ int main(int argc, char **argv) Suite *s; SRunner *sr; - /* when running under valgrind we're using nofork mode, so a signal - * raised by a test will fail in valgrind. There's nothing to - * memcheck here anyway, so just skip the valgrind test */ - if (RUNNING_ON_VALGRIND) - return 77; - s = litest_utils_suite(); sr = srunner_create(s);