test: fix build without timer library
authorTimothy Redaelli <tredaelli@redhat.com>
Thu, 4 Jul 2019 15:36:08 +0000 (17:36 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 5 Jul 2019 08:48:55 +0000 (10:48 +0200)
The action for timer_secondary_spawn_wait should be enabled only when
CONFIG_RTE_LIBRTE_TIMER is enabled.

Fixes: 50247fe03fe0 ("test/timer: exercise new APIs in secondary process")
Cc: stable@dpdk.org
Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
app/test/test.c

index 194a92a..cd7aaf6 100644 (file)
@@ -67,7 +67,9 @@ do_recursive_call(void)
                        { "test_memory_flags", no_action },
                        { "test_file_prefix", no_action },
                        { "test_no_huge_flag", no_action },
+#ifdef RTE_LIBRTE_TIMER
                        { "timer_secondary_spawn_wait", test_timer_secondary },
+#endif
        };
 
        if (recursive_call == NULL)