|
From: Paul F. <pa...@so...> - 2022-12-26 10:09:13
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=9acdd79b6947b3ddd3cdfa3f3d5afc7b8c8bee33 commit 9acdd79b6947b3ddd3cdfa3f3d5afc7b8c8bee33 Author: Paul Floyd <pj...@wa...> Date: Mon Dec 26 11:06:32 2022 +0100 Disable some memcheck tests on FreeBSD Fail due to differences in DWARF varinfo generated by clang compared to GCC. No fix in perspective. Diff: --- memcheck/tests/origin5-bz2.vgtest | 1 + memcheck/tests/varinfo2.vgtest | 1 + memcheck/tests/varinfo6.vgtest | 1 + 3 files changed, 3 insertions(+) diff --git a/memcheck/tests/origin5-bz2.vgtest b/memcheck/tests/origin5-bz2.vgtest index 5f9f573125..40fe6bb5a5 100644 --- a/memcheck/tests/origin5-bz2.vgtest +++ b/memcheck/tests/origin5-bz2.vgtest @@ -1,3 +1,4 @@ +prereq: ! ../../tests/os_test freebsd prog: origin5-bz2 vgopts: -q --track-origins=yes args: x diff --git a/memcheck/tests/varinfo2.vgtest b/memcheck/tests/varinfo2.vgtest index 0f73065462..6a86e6e531 100644 --- a/memcheck/tests/varinfo2.vgtest +++ b/memcheck/tests/varinfo2.vgtest @@ -1,3 +1,4 @@ +prereq: ! ../../tests/os_test freebsd prog: varinfo2 vgopts: --read-var-info=yes -q stderr_filter: filter_varinfo3 diff --git a/memcheck/tests/varinfo6.vgtest b/memcheck/tests/varinfo6.vgtest index 8855247a47..41984b19ba 100644 --- a/memcheck/tests/varinfo6.vgtest +++ b/memcheck/tests/varinfo6.vgtest @@ -1,2 +1,3 @@ +prereq: ! ../../tests/os_test freebsd prog: varinfo6 vgopts: --read-var-info=yes -q |