From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 98466A0547; Fri, 23 Apr 2021 18:32:16 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4F1FD410E8; Fri, 23 Apr 2021 18:32:16 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 6234A410E7 for ; Fri, 23 Apr 2021 18:32:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1619195534; 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: in-reply-to:in-reply-to:references:references; bh=2lejaOH9TzI38Jonpkqbjq1mKSeG5ozEb1ccJj78pbA=; b=WBW2YsKFV/htp0+q37VzeOqZwa/i8lgMkuoMcKX3Hp4KAtF8K0VgTNaCd8M/Tm0FaFHoEN 232HRB68+jRBwx2epSKrLky2hB2GryDyojYc/y+J0sllNLMN+KIqrOZn16NJ+vLY7sZ0F8 MqxTS80Mf3DOtFbUSXN2KXlogwVFIY8= 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-66-0s1_B_R6PhyziCgOdEabzw-1; Fri, 23 Apr 2021 12:32:12 -0400 X-MC-Unique: 0s1_B_R6PhyziCgOdEabzw-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 F21A510054F6; Fri, 23 Apr 2021 16:32:10 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-115-145.rdu2.redhat.com [10.10.115.145]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9E3DD19704; Fri, 23 Apr 2021 16:32:09 +0000 (UTC) From: Aaron Conole To: Ciara Power Cc: dev@dpdk.org, thomas@monjalon.net, declan.doherty@intel.com, gakhil@marvell.com, hemant.agrawal@nxp.com, anoobj@marvell.com, ruifeng.wang@arm.com, asomalap@amd.com, ajit.khaparde@broadcom.com, g.singh@nxp.com References: <20210423161820.2135053-1-ciara.power@intel.com> <20210423161820.2135053-3-ciara.power@intel.com> Date: Fri, 23 Apr 2021 12:32:08 -0400 In-Reply-To: <20210423161820.2135053-3-ciara.power@intel.com> (Ciara Power's message of "Fri, 23 Apr 2021 16:18:15 +0000") 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 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Subject: Re: [dpdk-dev] [PATCH v3 2/7] test: introduce parent testsuite format X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" Ciara Power writes: > The current structure for unit testing only allows for running a > test suite with nested test cases. This means all test cases for an > autotest must be in one suite, which is not ideal. > For example, in some cases we may want to run multiple lists of test > cases that each require different setup, so should be in separate suites. > > The unit test suite struct is modified to hold a pointer to a list of > sub-testsuite pointers, along with the list of testcases as before. > > Signed-off-by: Ciara Power > > --- LGTM Reviewed-by: Aaron Conole