From patchwork Wed Oct 27 14:05:44 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 103053 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EF4E6A0C47; Wed, 27 Oct 2021 16:05:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DF59D4114E; Wed, 27 Oct 2021 16:05:54 +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 A6009410F7 for ; Wed, 27 Oct 2021 16:05:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635343553; 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=xMJP0VgRVuR9siFZFqE/5SU1Au/I5V04yBCuLAa9yx0=; b=HZBit6H2Bicz7gOViZv5o0h7ZoKr0pa56WP4WRun8sPzUilsAr5PoUlXSNuUxtxOns6aUI +81i7FYme5RtJOn8rK7FFXM0eRmtL54XvipypoOxKKGJ7jAp3wqFtNfejcvjGt1OYSp45w BVDZ+533p9upI29P0fAhfPO7tyyiXoI= 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-32-NP1dufDlMruJvJNGl4H26Q-1; Wed, 27 Oct 2021 10:05:49 -0400 X-MC-Unique: NP1dufDlMruJvJNGl4H26Q-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 867EC100B3AF; Wed, 27 Oct 2021 14:05:48 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.79]) by smtp.corp.redhat.com (Postfix) with ESMTP id 93C651001B3B; Wed, 27 Oct 2021 14:05:46 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: aconole@redhat.com, Cristian Dumitrescu , Nithin Dabilpuram Date: Wed, 27 Oct 2021 16:05:44 +0200 Message-Id: <20211027140544.2871-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH] test: enable bitmap in fast tests 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" This test was never added to the list of tests to run in CI. Its name does not follow the implicit convention of ending with _autotest. Let's fix this. Fixes: 5e9647fd5a1a ("test/bitmap: test scan after half cacheline is cleared") Signed-off-by: David Marchand Acked-by: Cristian Dumitrescu --- app/test/meson.build | 1 + app/test/test_bitmap.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index 71fce2efda..510584010a 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -198,6 +198,7 @@ test_deps = [ fast_tests = [ ['acl_autotest', true], ['atomic_autotest', false], + ['bitmap_autotest', true], ['bpf_autotest', true], ['bpf_convert_autotest', true], ['bitops_autotest', true], diff --git a/app/test/test_bitmap.c b/app/test/test_bitmap.c index 70d8fffb5a..e9c61590ae 100644 --- a/app/test/test_bitmap.c +++ b/app/test/test_bitmap.c @@ -269,4 +269,4 @@ test_bitmap(void) return test_bitmap_all_set(); } -REGISTER_TEST_COMMAND(bitmap_test, test_bitmap); +REGISTER_TEST_COMMAND(bitmap_autotest, test_bitmap);