From: Paul Smith Date: Sat, 21 Sep 2019 19:38:01 +0000 (-0400) Subject: * tests/scripts/function/guile: Valgrind doesn't work with Guile. X-Git-Tag: 4.2.92~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d289b424a5795e7c385634d80e4eb1bbcdf146e;p=thirdparty%2Fmake.git * tests/scripts/function/guile: Valgrind doesn't work with Guile. --- diff --git a/tests/scripts/functions/guile b/tests/scripts/functions/guile index 415827ae..120aaf3b 100644 --- a/tests/scripts/functions/guile +++ b/tests/scripts/functions/guile @@ -21,6 +21,9 @@ $details = 'This only works on systems that support it.'; # If we don't have Guile support, never mind. exists $FEATURES{guile} or return -1; +# Guile and Valgrind don't play together at all. +$valgrind and return -1; + # Verify simple data type conversions # Currently we don't support vectors: # echo '$(guile (vector 1 2 3))'; \