1
0
mirror of https://github.com/mirror/make.git synced 2025-04-25 12:30:40 +08:00

* tests/scripts/function/guile: Valgrind doesn't work with Guile.

This commit is contained in:
Paul Smith 2019-09-21 15:38:01 -04:00
parent 96285f875b
commit 1d289b424a

View 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))'; \