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 C107DA00C4; Fri, 29 Jul 2022 20:04:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5AD7C4069C; Fri, 29 Jul 2022 20:04:07 +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 5C96B40151 for ; Fri, 29 Jul 2022 20:04:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1659117845; 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=LGF/9KhX0r+jkgn1IttaRm+2w6UAi4rJHm/I+xOgeTU=; b=Q/VfJg1YuJ8vlbL7AMZjdefBkkdMvhPlWf/827vjdQYPpwhRkoP9mFM1d3SXPi3VhlF12c wWNZ85pRhg0Lo2ewkkDKEEDzcAmkcAF6FubpsHkMM6aa9wke/M4n/onS136a/CGTtLChbg 25PZavZ4rN3Y94lKhi1Fp/IDWXUwbHA= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-102-TAj0bKlCM7-5ui7pqkDI3A-1; Fri, 29 Jul 2022 14:04:02 -0400 X-MC-Unique: TAj0bKlCM7-5ui7pqkDI3A-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 27CD7919EE0; Fri, 29 Jul 2022 18:04:02 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.33.38]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 87844C27DB3; Fri, 29 Jul 2022 18:04:01 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev@dpdk.org, Chengwen Feng , Michael Santana , Ciara Power Subject: Re: [PATCH v2 2/2] app/test: invoke all telemetry commands References: <20220729095400.774303-1-david.marchand@redhat.com> <20220729124256.1384838-1-david.marchand@redhat.com> <20220729124256.1384838-2-david.marchand@redhat.com> Date: Fri, 29 Jul 2022 14:04:01 -0400 In-Reply-To: <20220729124256.1384838-2-david.marchand@redhat.com> (David Marchand's message of "Fri, 29 Jul 2022 14:42:56 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.8 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 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 David Marchand writes: > Try and call all possible telemetry commands. > Each commands is tested with no argument, 0 (for command that accepts > a single integer like for a port identifier) and z (to catch commands > not properly validating input). > Fake cryptodev, dmadev, ethdev, eventdev and rawdev devices are created > using dummy drivers. > > Output of the commands is not checked, the point of this test is mainly > to catch simple issues and leaks (when coupled with ASan in the CI). > > Signed-off-by: David Marchand > Acked-by: Chengwen Feng > --- Acked-by: Aaron Conole