diff options
author | Randy MacLeod <Randy.MacLeod@windriver.com> | 2019-05-13 23:57:14 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-15 17:53:29 +0100 |
commit | ac087b259e78163863ca35bfe150ee297aa8ff5b (patch) | |
tree | f90c205343c8c87a24f7a4cad8c32d2f250cc3f9 /meta/recipes-devtools | |
parent | 587990fa282c87d899e2e2d758a506c7ba3664d4 (diff) | |
download | poky-ac087b259e78163863ca35bfe150ee297aa8ff5b.tar.gz |
valgrind: update the ptest subdirs list
Split the list into one directory per line.
Sort the list alphabetically.
Add the gdbserver_tests directory to get the 'gone' executable
which is needed by:
memcheck/tests/gone_abrt_xml.vgtest
(From OE-Core rev: eb7d907deb09f2658f69d8faa8e56e6a56510fca)
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.15.0.bb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb index 3b3d0f02f7..5f95b5a740 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb | |||
@@ -136,7 +136,17 @@ do_install_ptest() { | |||
136 | # exclude shell or the package won't install | 136 | # exclude shell or the package won't install |
137 | rm -rf none/tests/shell* 2>/dev/null | 137 | rm -rf none/tests/shell* 2>/dev/null |
138 | 138 | ||
139 | subdirs="tests cachegrind/tests callgrind/tests drd/tests helgrind/tests massif/tests memcheck/tests none/tests" | 139 | subdirs=" \ |
140 | cachegrind/tests \ | ||
141 | callgrind/tests \ | ||
142 | drd/tests \ | ||
143 | gdbserver_tests \ | ||
144 | helgrind/tests \ | ||
145 | massif/tests \ | ||
146 | memcheck/tests \ | ||
147 | none/tests \ | ||
148 | tests \ | ||
149 | " | ||
140 | 150 | ||
141 | # Get the vg test scripts, filters, and expected files | 151 | # Get the vg test scripts, filters, and expected files |
142 | for dir in $subdirs ; do | 152 | for dir in $subdirs ; do |