DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] test: fix to skip kni autotest
@ 2018-11-13 14:00 Pallantla Poornima
  2018-11-13 16:08 ` Pattan, Reshma
  0 siblings, 1 reply; 3+ messages in thread
From: Pallantla Poornima @ 2018-11-13 14:00 UTC (permalink / raw)
  To: dev; +Cc: reshma.pattan, ferruh.yigit, Pallantla Poornima, stable

Kni_autotest should be skipped if rte_kni.ko module is not loaded.
Hence changed return as TEST_SKIPPED.

Fixes: ee1caebc4d ("test/kni: check module dependency")
Cc: stable@dpdk.org

Signed-off-by: Pallantla Poornima <pallantlax.poornima@intel.com>
---
 test/test/test_kni.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/test/test_kni.c b/test/test/test_kni.c
index f3c19b5a0..c92c09054 100644
--- a/test/test/test_kni.c
+++ b/test/test/test_kni.c
@@ -549,7 +549,7 @@ test_kni(void)
 	if (!dir) {
 		if (errno == ENOENT) {
 			printf("Cannot run UT due to missing rte_kni module\n");
-			return -1;
+			return TEST_SKIPPED;
 		}
 		printf("opendir: %s", strerror(errno));
 		return -1;
-- 
2.13.6

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

end of thread, other threads:[~2018-11-14  3:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-13 14:00 [dpdk-dev] [PATCH] test: fix to skip kni autotest Pallantla Poornima
2018-11-13 16:08 ` Pattan, Reshma
2018-11-14  3:52   ` 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).