]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* tests/scripts/function/guile: Valgrind doesn't work with Guile.
authorPaul Smith <psmith@gnu.org>
Sat, 21 Sep 2019 19:38:01 +0000 (15:38 -0400)
committerPaul Smith <psmith@gnu.org>
Sat, 21 Sep 2019 19:38:52 +0000 (15:38 -0400)
tests/scripts/functions/guile

index 415827ae0f92eecccda200596f9c0550d3351ae9..120aaf3bce1fc20dc454024985094568fc7f12b0 100644 (file)
@@ -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))'; \