app/test: shorten execution time
[dpdk.git] / app / test / test_per_lcore.c
index 1a5a232..f452cdb 100644 (file)
@@ -40,7 +40,6 @@
 #include <rte_memzone.h>
 #include <rte_per_lcore.h>
 #include <rte_launch.h>
-#include <rte_tailq.h>
 #include <rte_eal.h>
 #include <rte_per_lcore.h>
 #include <rte_lcore.h>
@@ -93,8 +92,8 @@ display_vars(__attribute__((unused)) void *arg)
 static int
 test_per_lcore_delay(__attribute__((unused)) void *arg)
 {
-       rte_delay_ms(5000);
-       printf("wait 5000ms on lcore %u\n", rte_lcore_id());
+       rte_delay_ms(100);
+       printf("wait 100ms on lcore %u\n", rte_lcore_id());
 
        return 0;
 }