From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7353BA0563; Tue, 17 Mar 2020 13:50:18 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4E593292D; Tue, 17 Mar 2020 13:50:18 +0100 (CET) Received: from us-smtp-delivery-74.mimecast.com (us-smtp-delivery-74.mimecast.com [63.128.21.74]) by dpdk.org (Postfix) with ESMTP id 4F2C325D9 for ; Tue, 17 Mar 2020 13:50:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1584449415; 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: in-reply-to:in-reply-to:references:references; bh=PTMi91MHukh4CYfx10vyilMrwbqZQC4rDOdXWkYOkws=; b=Ru98NPsBCLmAZLMnYY4Are0DXVw+y2Q7+N3cRLQkrFiRhdx7nUjyZ0dS3M/k8jt9ge07fV Ryxfr5W9U2NjvNaA2Zm28Q4TLB5APjSYlJI+Zd3jYUmthVaivdMS7Gac2Ae0Rpfyo40wGQ UzxGBNhreeJO3UdkQVRUT0cGn8AN0xM= 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-416-mTEj2EMROJSqZiuYuJw_yg-1; Tue, 17 Mar 2020 08:50:12 -0400 X-MC-Unique: mTEj2EMROJSqZiuYuJw_yg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 785BC107ACC4; Tue, 17 Mar 2020 12:50:09 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-116-107.rdu2.redhat.com [10.10.116.107]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5A6A319C58; Tue, 17 Mar 2020 12:50:03 +0000 (UTC) From: Aaron Conole To: Ruifeng Wang Cc: maicolgabriel@hotmail.com, bruce.richardson@intel.com, konstantin.ananyev@intel.com, cristian.dumitrescu@intel.com, yipeng1.wang@intel.com, sameh.gobriel@intel.com, dev@dpdk.org, david.marchand@redhat.com, anatoly.burakov@intel.com, gavin.hu@arm.com, honnappa.nagarahalli@arm.com, juraj.linkes@pantheon.tech, nd@arm.com References: <20200225073236.135581-1-ruifeng.wang@arm.com> <20200313081614.195335-1-ruifeng.wang@arm.com> <20200313081614.195335-3-ruifeng.wang@arm.com> Date: Tue, 17 Mar 2020 08:50:02 -0400 In-Reply-To: <20200313081614.195335-3-ruifeng.wang@arm.com> (Ruifeng Wang's message of "Fri, 13 Mar 2020 16:16:12 +0800") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v3 2/4] ci: generate fast-tests suite base on hugepage availability 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" Ruifeng Wang writes: > In environments where hugepage are not available, such as > containers, many cases in fast-tests suite should also run > if no-huge EAL option is used. > > Flag is appended to each case in fast-tests suite to indicate > whether it lives with no-huge mode. > With the flag, fast-tests suite can be generated based on > detected hugepage availability of building environment. > All cases will be valid if hugepage is available, whereas > only applicable cases will be added if environment has no > hugepage support. > > Suggested-by: Aaron Conole > Signed-off-by: Ruifeng Wang > Reviewed-by: Gavin Hu > --- Acked-by: Aaron Conole