diff options
author | Randy MacLeod <Randy.MacLeod@windriver.com> | 2019-05-17 16:10:20 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-21 12:56:34 +0100 |
commit | 706a31f326a245ef3bd824c6c1315bd29b744ac8 (patch) | |
tree | 6f1a5c4144d6b56fc0af8de82e6d17c120df6fde | |
parent | 6818506b0ab9fdc29ad7bf8e3e62f162c5c21ae5 (diff) | |
download | poky-706a31f326a245ef3bd824c6c1315bd29b744ac8.tar.gz |
valgrind: Make ptest timestamps copasetic
Avoid ptest failures due to .diffs such as
cachegrind/tests/ann1.post.diff:
@ Source file 'a.c' is more recent than input file 'cgout-test'.
@ Annotations may not be correct.
by using:
touch a.c -r cgout-test
(From OE-Core rev: 531cea018fa440fc408e1e061794978a502ad4ba)
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.15.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb index ae3498f551..2160fc92d1 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb | |||
@@ -168,6 +168,7 @@ do_install_ptest() { | |||
168 | -o -name "*.h" \) \ | 168 | -o -name "*.h" \) \ |
169 | -exec rm {} \; | 169 | -exec rm {} \; |
170 | mv ${D}${PTEST_PATH}/cachegrind/tests/a_c ${D}${PTEST_PATH}/cachegrind/tests/a.c | 170 | mv ${D}${PTEST_PATH}/cachegrind/tests/a_c ${D}${PTEST_PATH}/cachegrind/tests/a.c |
171 | touch ${D}${PTEST_PATH}/cachegrind/tests/a.c -r ${D}${PTEST_PATH}/cachegrind/tests/cgout-test | ||
171 | 172 | ||
172 | # find *_annotate in ${bindir} for yocto build | 173 | # find *_annotate in ${bindir} for yocto build |
173 | sed -i s:\.\./\.\./cachegrind/cg_annotate:${bindir}/cg_annotate: ${D}${PTEST_PATH}/cachegrind/tests/ann1.vgtest | 174 | sed -i s:\.\./\.\./cachegrind/cg_annotate:${bindir}/cg_annotate: ${D}${PTEST_PATH}/cachegrind/tests/ann1.vgtest |