]> code.ossystems Code Review - openembedded-core.git/commitdiff
valgrind: build ptests without optimizations
authorDave Lerner <dave.lerner@windriver.com>
Mon, 17 Aug 2015 19:55:56 +0000 (14:55 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 19 Aug 2015 16:57:52 +0000 (17:57 +0100)
This commit changes the both CFLAGS and CXXFLAGS when building the
valgrind ptest binaries by appending -O0, forcing no optimizations
instead of the default -O2.  For qemux86-64, this change results in
FAIL/PASS ratio improvements from 149/394 to 58/485.

It is evident that the expected result files were generated from
regression tests binaries built without optimizations.

[ YOCTO #8063 ]

Signed-off-by: Dave Lerner <dave.lerner@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/valgrind/valgrind_3.10.1.bb

index 97d923d6f0c76c53ab06ba91dd6b4e6a8b2ddd52..537d7c8b9323e1dcb95587678a7b3d3697468685 100644 (file)
@@ -57,7 +57,7 @@ RRECOMMENDS_${PN} += "${TCLIBC}-dbg"
 RDEPENDS_${PN}-ptest += " sed perl glibc-utils perl-module-file-glob"
 
 do_compile_ptest() {
-    oe_runmake check
+    oe_runmake check CFLAGS="${CFLAGS} -O0" CXXFLAGS="${CXXFLAGS} -O0"
 }