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 5B488A04A5; Fri, 19 Jun 2020 11:58:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8CDC31BDAE; Fri, 19 Jun 2020 11:58:47 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id EC2BC1B13C for ; Fri, 19 Jun 2020 11:58:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1592560725; 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=Vm/X2n87j6tYvK6n97Jm+QfecZuAagwi2gDvO/KhdrI=; b=LilrxMlPjHebarveopA9nEBD+coCl0OEguDxAC3le4sT48atJRwCHeBEc6hMCMyO3QZDSK OexMviBnXKj5UzcvSa4XwiKC38Z2vUeXR4SgwKvmYIdO8upJ/zZIas5tpXaBrOFsHVtOM9 Hw+v7LuhvOOaSo/Zl5PE4efs2lIUom8= 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-286-lBLayWmBOJqdjha2N4Z-Aw-1; Fri, 19 Jun 2020 05:58:43 -0400 X-MC-Unique: lBLayWmBOJqdjha2N4Z-Aw-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 1F8361800D4A; Fri, 19 Jun 2020 09:58:42 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.186]) by smtp.corp.redhat.com (Postfix) with ESMTP id 467B55BAD3; Fri, 19 Jun 2020 09:58:39 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Gavin Hu , Phil Yang , Joyce Kong Date: Fri, 19 Jun 2020 11:58:28 +0200 Message-Id: <20200619095828.13851-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] test: fix bitops test name 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" Caught by code review, bitops test name is incorrect. Fixes: 7660614c11e2 ("test/bitops: add bit operations test case") Signed-off-by: David Marchand --- app/test/autotest_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py index 600b130966..4b7da45e09 100644 --- a/app/test/autotest_data.py +++ b/app/test/autotest_data.py @@ -412,7 +412,7 @@ }, { "Name": "Bitops test", - "Command": "bitops_test", + "Command": "bitops_autotest", "Func": default_autotest, "Report": None, }, -- 2.23.0