DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] test/logs: fix dynamic log levels testing
@ 2017-09-21 18:44 Radoslaw Biernacki
  2017-09-25 10:25 ` Olivier MATZ
  0 siblings, 1 reply; 3+ messages in thread
From: Radoslaw Biernacki @ 2017-09-21 18:44 UTC (permalink / raw)
  To: dev; +Cc: olivier.matz, stable

This patch fixes the dynamic log levels testing in logs_autotest.
Introduction of rte_log_set_level() in patch c1b5fa94a46f was done
with parameter RTE_LOG_EMERG which caused all RTE_LOG() calls an
early return due to all given levels were far below EMERG.
If first two logs supposed to show up on console, the initial log
level must be low (DEBUG). It is than changed above ERR when we test
if TESTAPP2 log type can be filtered by log type log level.

Fixes: c1b5fa94a46f ("eal: support dynamic log types")

Signed-off-by: Radoslaw Biernacki <radoslaw.biernacki@linaro.org>
---
 test/test/test_logs.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/test/test/test_logs.c b/test/test/test_logs.c
index 730a86b..2a77064 100644
--- a/test/test/test_logs.c
+++ b/test/test/test_logs.c
@@ -61,9 +61,9 @@
 static int
 test_logs(void)
 {
-	/* enable these logs type */
-	rte_log_set_level(RTE_LOGTYPE_TESTAPP1, RTE_LOG_EMERG);
-	rte_log_set_level(RTE_LOGTYPE_TESTAPP2, RTE_LOG_EMERG);
+	/* set logtype level low to so we can test global level */
+	rte_log_set_level(RTE_LOGTYPE_TESTAPP1, RTE_LOG_DEBUG);
+	rte_log_set_level(RTE_LOGTYPE_TESTAPP2, RTE_LOG_DEBUG);
 
 	/* log in error level */
 	rte_log_set_global_level(RTE_LOG_ERR);
@@ -75,8 +75,8 @@ test_logs(void)
 	RTE_LOG(ERR, TESTAPP2, "error message (not displayed)\n");
 	RTE_LOG(CRIT, TESTAPP2, "critical message\n");
 
-	/* disable one log type */
-	rte_log_set_level(RTE_LOGTYPE_TESTAPP2, RTE_LOG_DEBUG);
+	/* bump up single log type level above global to test it */
+	rte_log_set_level(RTE_LOGTYPE_TESTAPP2, RTE_LOG_EMERG);
 
 	/* log in error level */
 	rte_log_set_global_level(RTE_LOG_ERR);
-- 
2.7.4

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] test/logs: fix dynamic log levels testing
  2017-09-21 18:44 [dpdk-dev] [PATCH] test/logs: fix dynamic log levels testing Radoslaw Biernacki
@ 2017-09-25 10:25 ` Olivier MATZ
  2017-10-05 21:19   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Olivier MATZ @ 2017-09-25 10:25 UTC (permalink / raw)
  To: Radoslaw Biernacki; +Cc: dev, stable

On Thu, Sep 21, 2017 at 08:44:09PM +0200, Radoslaw Biernacki wrote:
> This patch fixes the dynamic log levels testing in logs_autotest.
> Introduction of rte_log_set_level() in patch c1b5fa94a46f was done
> with parameter RTE_LOG_EMERG which caused all RTE_LOG() calls an
> early return due to all given levels were far below EMERG.
> If first two logs supposed to show up on console, the initial log
> level must be low (DEBUG). It is than changed above ERR when we test
> if TESTAPP2 log type can be filtered by log type log level.
> 
> Fixes: c1b5fa94a46f ("eal: support dynamic log types")
> 
> Signed-off-by: Radoslaw Biernacki <radoslaw.biernacki@linaro.org>

Acked-by: Olivier Matz <olivier.matz@6wind.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] test/logs: fix dynamic log levels testing
  2017-09-25 10:25 ` Olivier MATZ
@ 2017-10-05 21:19   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2017-10-05 21:19 UTC (permalink / raw)
  To: Radoslaw Biernacki; +Cc: dev, Olivier MATZ

25/09/2017 12:25, Olivier MATZ:
> On Thu, Sep 21, 2017 at 08:44:09PM +0200, Radoslaw Biernacki wrote:
> > This patch fixes the dynamic log levels testing in logs_autotest.
> > Introduction of rte_log_set_level() in patch c1b5fa94a46f was done
> > with parameter RTE_LOG_EMERG which caused all RTE_LOG() calls an
> > early return due to all given levels were far below EMERG.
> > If first two logs supposed to show up on console, the initial log
> > level must be low (DEBUG). It is than changed above ERR when we test
> > if TESTAPP2 log type can be filtered by log type log level.
> > 
> > Fixes: c1b5fa94a46f ("eal: support dynamic log types")
> > 
> > Signed-off-by: Radoslaw Biernacki <radoslaw.biernacki@linaro.org>
> 
> Acked-by: Olivier Matz <olivier.matz@6wind.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-10-05 21:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-21 18:44 [dpdk-dev] [PATCH] test/logs: fix dynamic log levels testing Radoslaw Biernacki
2017-09-25 10:25 ` Olivier MATZ
2017-10-05 21:19   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).