From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8AD99C432C0 for ; Fri, 22 Nov 2019 15:54:49 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 374DA2071B for ; Fri, 22 Nov 2019 15:54:49 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="D84nT+wY" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 374DA2071B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8D3E22BAF; Fri, 22 Nov 2019 16:54:47 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id 2A7502BA8 for ; Fri, 22 Nov 2019 16:54:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574438085; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=cTaMwh93lJc++HVpEyNuxAIMTm6ItFhggFBufCtUHTw=; b=D84nT+wY9ZXP3/RYKJGnveSLsJfh86+VnpUxa/ldfpsB3tEbekfzTdPZfgzMw1m8PnlpTg HQU/1MC9MjOfHpbVR9evVjUuqsmkYPeuw7WToG002ohLlBE4LRMPOzRtv4gJnBFfz3H/i9 21SQ8/Vw7JMprKr1HKqdWfYKOp6GdNY= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-292-csEwIzuOMVqvmPgSFBBFzw-1; Fri, 22 Nov 2019 10:54:41 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D6926477; Fri, 22 Nov 2019 15:54:40 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-108.brq.redhat.com [10.40.204.108]) by smtp.corp.redhat.com (Postfix) with ESMTP id E1F925DE79; Fri, 22 Nov 2019 15:54:38 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, Aaron Conole , Michael Santana Date: Fri, 22 Nov 2019 16:54:29 +0100 Message-Id: <20191122155429.18971-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-MC-Unique: csEwIzuOMVqvmPgSFBBFzw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH] ci: add minimal check on testpmd X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -32,6 +32,10 @@ OPTS=3D"$OPTS --default-library=3D$DEF_LIB" meson build --werror -Dexamples=3Dall $OPTS ninja -C build =20 +if [ "$AARCH64" !=3D "1" ]; then + ./devtools/test-null.sh +fi + if [ "$RUN_TESTS" =3D "1" ]; then sudo meson test -C build --suite fast-tests -t 3 fi --=20 2.23.0