Re: [dpdk-dev] [PATCH] ci: add minimal check on testpmd

2019-11-26 Thread Thomas Monjalon
24/11/2019 19:12, Thomas Monjalon: > 24/11/2019 15:17, David Marchand: > > On Fri, Nov 22, 2019 at 5:29 PM Thomas Monjalon wrote: > > > > > > 22/11/2019 16:54, David Marchand: > > > > --- a/.ci/linux-build.sh > > > > +++ b/.ci/linux-build.sh > > > > +if [ "$AARCH64" != "1" ]; then > > > > +./d

Re: [dpdk-dev] [PATCH] ci: add minimal check on testpmd

2019-11-24 Thread Thomas Monjalon
24/11/2019 15:17, David Marchand: > On Fri, Nov 22, 2019 at 5:29 PM Thomas Monjalon wrote: > > > > 22/11/2019 16:54, David Marchand: > > > --- a/.ci/linux-build.sh > > > +++ b/.ci/linux-build.sh > > > +if [ "$AARCH64" != "1" ]; then > > > +./devtools/test-null.sh > > > > You are missing the bu

Re: [dpdk-dev] [PATCH] ci: add minimal check on testpmd

2019-11-24 Thread David Marchand
On Fri, Nov 22, 2019 at 5:29 PM Thomas Monjalon wrote: > > 22/11/2019 16:54, David Marchand: > > --- a/.ci/linux-build.sh > > +++ b/.ci/linux-build.sh > > +if [ "$AARCH64" != "1" ]; then > > +./devtools/test-null.sh > > You are missing the build directory as first parameter, > otherwise it won

Re: [dpdk-dev] [PATCH] ci: add minimal check on testpmd

2019-11-22 Thread Thomas Monjalon
22/11/2019 16:54, David Marchand: > --- a/.ci/linux-build.sh > +++ b/.ci/linux-build.sh > +if [ "$AARCH64" != "1" ]; then > +./devtools/test-null.sh You are missing the build directory as first parameter, otherwise it won't find testpmd. One nit: ./ is probably useless.

[dpdk-dev] [PATCH] ci: add minimal check on testpmd

2019-11-22 Thread David Marchand
Try to start testpmd with two vdevs without hugepages. This is a really basic check, but better than nothing. Signed-off-by: David Marchand --- .ci/linux-build.sh | 4 1 file changed, 4 insertions(+) diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index c570ba24e6..e37176e91c 100755 -