From: pgowda Date: Sun, 4 Sep 2022 07:06:41 +0000 (+0530) Subject: rust: Enable verbose-tests to get the test results in readable format X-Git-Tag: yocto-4.1~194 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=78aecd6d4e443cb467e9a8007f2db29943dfdd1f;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git rust: Enable verbose-tests to get the test results in readable format Emits complete details regarding the test results to understand and debug from logfiles Signed-off-by: pgowda Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/rust/rust.inc b/meta/recipes-devtools/rust/rust.inc index afbda2cb199..a33eb00e25f 100644 --- a/meta/recipes-devtools/rust/rust.inc +++ b/meta/recipes-devtools/rust/rust.inc @@ -119,6 +119,10 @@ python do_configure() { # Whether or not to optimize the compiler and standard library config.set("rust", "optimize", e(True)) + # Emits extraneous output from tests to ensure that failures of the test + # harness are debuggable just from logfiles + config.set("rust", "verbose-tests", e(True)) + # [build] config.add_section("build") config.set("build", "submodules", e(False))