summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2016-09-23 15:23:20 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-18 13:14:22 +0100
commitdd20601980a8709acddb159000cc8d880dc9e047 (patch)
treefbe16a4828184806aa8f5de2e913e233f9741724
parentd3c0a560a8d82e7a3ec03410a1a5e83eaa6fdbf2 (diff)
downloadpoky-dd20601980a8709acddb159000cc8d880dc9e047.tar.gz
openssl.inc: avoid random ptest failures
"make alltests" is sensitive to the timestamps of the installed files. Depending on the order in which cp copies files, .o and/or executables may end up with time stamps older than the source files. Running tests then triggers recompilation attempts, which typically will fail because dev tools and files are not installed. "cp -a" is not enough because the files also have to be newer than the installed header files. Setting the file time stamps to the current time explicitly after copying solves the problem because do_install_ptest_base is guaranteed to run after do_install. (From OE-Core rev: 101e2a5e0b7822ca3de3d3a73369405c05ab3c5b) (From OE-Core rev: b309bfa265456cda7269ff67e9df5f5c05a9a5a5) Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-connectivity/openssl/openssl.inc13
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index 20dd74062a..2e2000cc26 100644
--- a/meta/recipes-connectivity/openssl/openssl.inc
+++ b/meta/recipes-connectivity/openssl/openssl.inc
@@ -215,6 +215,19 @@ do_install_ptest () {
215 mkdir -p ${D}${PTEST_PATH}/util 215 mkdir -p ${D}${PTEST_PATH}/util
216 install util/opensslwrap.sh ${D}${PTEST_PATH}/util 216 install util/opensslwrap.sh ${D}${PTEST_PATH}/util
217 install util/shlib_wrap.sh ${D}${PTEST_PATH}/util 217 install util/shlib_wrap.sh ${D}${PTEST_PATH}/util
218 # Time stamps are relevant for "make alltests", otherwise
219 # make may try to recompile binaries. Not only must the
220 # binary files be newer than the sources, they also must
221 # be more recent than the header files in /usr/include.
222 #
223 # Using "cp -a" is not sufficient, because do_install
224 # does not preserve the original time stamps.
225 #
226 # So instead of using the original file stamps, we set
227 # the current time for all files. Binaries will get
228 # modified again later when stripping them, but that's okay.
229 touch ${D}${PTEST_PATH}
230 find ${D}${PTEST_PATH} -type f -print0 | xargs --verbose -0 touch -r ${D}${PTEST_PATH}
218} 231}
219 232
220do_install_append_class-native() { 233do_install_append_class-native() {