]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
rust: Enable verbose-tests to get the test results in readable format
authorpgowda <pgowda.cve@gmail.com>
Sun, 4 Sep 2022 07:06:41 +0000 (12:36 +0530)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 5 Sep 2022 11:54:50 +0000 (12:54 +0100)
Emits complete details regarding the test results to understand
and debug from logfiles

Signed-off-by: pgowda <pgowda.cve@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/rust/rust.inc

index afbda2cb199cbd67057cf89dcefbea34435bbe1d..a33eb00e25f9893eb749cc6bb4a1552091803d88 100644 (file)
@@ -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))