]> git.droids-corp.org - dpdk.git/commitdiff
test/log: skip regex on Windows
authorJie Zhou <jizh@linux.microsoft.com>
Wed, 26 Jan 2022 05:10:38 +0000 (21:10 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 8 Feb 2022 13:19:40 +0000 (14:19 +0100)
DPDK logs_autotest on Windows failed at "dynamic log types" tests.
The failures are on 2 test cases for rte_log_set_level_regexp API,
due to regular expression is not supported on Windows in DPDK yet
and regcomp/regexec are just stubs on Windows (in regex.h).

In app/test/test_logs.c, ifndef these two test cases, and for the
rte_log_set_level_pattern validation case following these two cases,
differentiate the expected log level passed into macro CHECK_LEVELS

Now logs_autotest completes for all dynamic log types and static log types.

Signed-off-by: Jie Zhou <jizh@linux.microsoft.com>
Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
app/test/test_logs.c

index 7abb6eeca24ac31a05a020b39f1a201ebc683eb0..8da8824bee6a136447d1f07eb8ae527356829f06 100644 (file)
@@ -113,6 +113,7 @@ test_logs(void)
        rte_log_set_level(logtype1, RTE_LOG_ERR);
        CHECK_LEVELS(RTE_LOG_ERR, RTE_LOG_INFO, RTE_LOG_ERR);
 
+#ifndef RTE_EXEC_ENV_WINDOWS
        rte_log_set_level_regexp("type$", RTE_LOG_EMERG);
        CHECK_LEVELS(RTE_LOG_ERR, RTE_LOG_INFO, RTE_LOG_ERR);
 
@@ -121,6 +122,10 @@ test_logs(void)
 
        rte_log_set_level_pattern("logtype", RTE_LOG_DEBUG);
        CHECK_LEVELS(RTE_LOG_ERR, RTE_LOG_EMERG, RTE_LOG_EMERG);
+#else
+       rte_log_set_level_pattern("logtype", RTE_LOG_DEBUG);
+       CHECK_LEVELS(RTE_LOG_ERR, RTE_LOG_INFO, RTE_LOG_ERR);
+#endif
 
        /* set logtype level low to so we can test global level */
        rte_log_set_level_pattern("logtype*", RTE_LOG_DEBUG);