From: Frank Rowand Date: Thu, 10 Feb 2022 23:08:19 +0000 (-0600) Subject: of: unittest: print pass messages at PR_INFO level X-Git-Tag: v5.18-rc1~104^2~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54eb8dc8f338962e12760fb718f4ca39a8cf3aa9;p=thirdparty%2Fkernel%2Flinux.git of: unittest: print pass messages at PR_INFO level Printing the devicetree unittest pass message for each passed test creates much console verbosity. The existing pass messages are printed at loglevel KERN_DEBUG so they will not print by default. Change default to print the pass messages at loglevel PR_INFO so they will print with the default console loglevel. The test community expects either a pass or a fail message for each test in a test suite. The messages are typically post-processed to report pass/fail results. Signed-off-by: Frank Rowand Tested-by: Linux Kernel Functional Testing Signed-off-by: Rob Herring Link: https://lore.kernel.org/r/20220210230819.3303212-1-frowand.list@gmail.com --- diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c index 70992103c07d7..9012e6900965d 100644 --- a/drivers/of/unittest.c +++ b/drivers/of/unittest.c @@ -44,7 +44,7 @@ static struct unittest_results { pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \ } else { \ unittest_results.passed++; \ - pr_debug("pass %s():%i\n", __func__, __LINE__); \ + pr_info("pass %s():%i\n", __func__, __LINE__); \ } \ failed; \ })