From: David Levine Date: Sat, 7 Dec 2013 00:43:20 +0000 (-0600) Subject: Skip inc/test-deb359167 on FreeBSD >= 10 because its valgrind X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/4a59ecc985c7d8989e797257b92906aee0444097?hp=64fd71ad6a0c0cfb19fb5e49f293b1ab42923f7b Skip inc/test-deb359167 on FreeBSD >= 10 because its valgrind throws a strange error. Code provided by Lyndon. --- diff --git a/test/inc/test-deb359167 b/test/inc/test-deb359167 index 92f4c61a..8d460dde 100755 --- a/test/inc/test-deb359167 +++ b/test/inc/test-deb359167 @@ -11,6 +11,14 @@ fi setup_test +# valgrind throws a strange error on FreeBSD >= 10; skip the test +# for now while we try to track down the underlying cause. +if [ $(uname -s) == 'FreeBSD' ]; then + case $(uname -r) in + 1?.*) test_skip 'valgrind fails on FreeBSD >= 10' ;; + esac +fi + require_prog valgrind THISDIR="$srcdir/test/inc"