> From: Pavan Nikhilesh [mailto:[email protected]] > Sent: Tuesday, December 12, 2017 7:27 PM > To: [email protected]; Richardson, Bruce > <[email protected]>; Van Haaren, Harry > <[email protected]>; Eads, Gage <[email protected]>; > [email protected]; [email protected]; Ma, Liang J > <[email protected]> > Cc: [email protected]; Pavan Nikhilesh <[email protected]> > Subject: [dpdk-dev] [PATCH 4/7] event/sw: move eventdev sw test to driver > > Move software eventdev specific test (test_eventdev_sw) to > driver/event/sw. > > Signed-off-by: Pavan Nikhilesh <[email protected]> > --- > test/test/test_eventdev_sw.c => drivers/event/sw/selftest_sw.c | 0 > test/test/Makefile | 1 - > 2 files changed, 1 deletion(-) > rename test/test/test_eventdev_sw.c => drivers/event/sw/selftest_sw.c > (100%) > > diff --git a/test/test/test_eventdev_sw.c b/drivers/event/sw/selftest_sw.c > similarity index 100% > rename from test/test/test_eventdev_sw.c > rename to drivers/event/sw/selftest_sw.c
Rename to sw_evdev_selftest.c for consistency with other filenames With that Acked-by: Harry van Haaren <[email protected]> > diff --git a/test/test/Makefile b/test/test/Makefile > index 87e3169d2..c551ad964 100644 > --- a/test/test/Makefile > +++ b/test/test/Makefile > @@ -210,7 +210,6 @@ ifeq ($(CONFIG_RTE_LIBRTE_EVENTDEV),y) > SRCS-y += test_eventdev.c > SRCS-y += test_event_ring.c > SRCS-y += test_event_eth_rx_adapter.c > -SRCS-$(CONFIG_RTE_LIBRTE_PMD_SW_EVENTDEV) += test_eventdev_sw.c > endif > > SRCS-$(CONFIG_RTE_LIBRTE_KVARGS) += test_kvargs.c > -- > 2.14.1

