summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/valgrind/valgrind
diff options
context:
space:
mode:
authorRandy MacLeod <Randy.MacLeod@windriver.com>2019-09-10 17:41:34 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-16 23:02:44 +0100
commit3b83ad583066795fa3419495b320d5596c55597b (patch)
tree1533597f4836fec321598ae91aee1ae8ee95b422 /meta/recipes-devtools/valgrind/valgrind
parentecb8b17efcb07e576f6693d05ceeffa65eae957e (diff)
downloadpoky-3b83ad583066795fa3419495b320d5596c55597b.tar.gz
valgrind: make a few more ptests pass
Adjust two memcheck vgtest files to deal with relative paths that are in test executables when cross-compiling. Add libgomp to enable OpenMP tests. Add the bz2 executable for memcheck/tests/vcpu_bz2. (From OE-Core rev: f75792b28e39e4c393c0a00369d5417e3af75b36) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind/0001-adjust-path-filter-for-2-memcheck-tests.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/0001-adjust-path-filter-for-2-memcheck-tests.patch b/meta/recipes-devtools/valgrind/valgrind/0001-adjust-path-filter-for-2-memcheck-tests.patch
new file mode 100644
index 0000000000..4bc4bb086c
--- /dev/null
+++ b/meta/recipes-devtools/valgrind/valgrind/0001-adjust-path-filter-for-2-memcheck-tests.patch
@@ -0,0 +1,40 @@
1From bf63e35c3036e6040c8cfecabc7160b1f36b0591 Mon Sep 17 00:00:00 2001
2From: Randy MacLeod <Randy.MacLeod@windriver.com>
3Date: Wed, 28 Aug 2019 12:31:15 -0400
4Subject: [PATCH] adjust path filter for 2 memcheck tests
5
6Test executables produced when cross-compiling can contain
7relative paths such as:
8 coregrind/tests/../../../valgrind-3.15.0/coregrind/
9Use the --fullpath-after option to match and therefore
10suppress more of the prefix to enable test to pass.
11
12Upstream-Status: Inappropriate [embedded specific]
13
14Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
15---
16 memcheck/tests/badfree3.vgtest | 2 +-
17 memcheck/tests/varinfo5.vgtest | 2 +-
18 2 files changed, 2 insertions(+), 2 deletions(-)
19
20diff --git a/memcheck/tests/badfree3.vgtest b/memcheck/tests/badfree3.vgtest
21index 3dfc5fd8a..57eec21f3 100644
22--- a/memcheck/tests/badfree3.vgtest
23+++ b/memcheck/tests/badfree3.vgtest
24@@ -1,3 +1,3 @@
25 prog: badfree
26-vgopts: -q --fullpath-after=memcheck/ --fullpath-after=coregrind/
27+vgopts: -q --fullpath-after=/valgrind-3.15.0/memcheck/ --fullpath-after=/valgrind-3.15.0/coregrind/
28 stderr_filter_args: badfree.c
29diff --git a/memcheck/tests/varinfo5.vgtest b/memcheck/tests/varinfo5.vgtest
30index 063d00dce..6907bb2f6 100644
31--- a/memcheck/tests/varinfo5.vgtest
32+++ b/memcheck/tests/varinfo5.vgtest
33@@ -1,3 +1,3 @@
34 prog: varinfo5
35-vgopts: --fullpath-after=memcheck/ --fullpath-after=coregrind/ --read-var-info=yes --read-inline-info=yes -q
36+vgopts: --fullpath-after=/valgrind-3.15.0/memcheck/ --fullpath-after=/valgrind-3.15.0/coregrind/ --read-var-info=yes --read-inline-info=yes -q
37 stderr_filter: filter_varinfo3
38--
392.22.0
40