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 5F6DAA04DB; Mon, 16 Nov 2020 11:06:42 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B96D0C8F4; Mon, 16 Nov 2020 11:06:39 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id 171CEC8B0 for ; Mon, 16 Nov 2020 11:06:37 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605521196; 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=M/pN3oH8JYZjF0lsla3RA9/ngHrB9JDOjfmsezeU23w=; b=ZO/oufxjxCoO34H0xpLoGUrZ/40FOYCq3qlWqr5ERjTVDaRYOE5ZfrpN6vo67ij5t3S3u3 jWf66+FPtegndXGzC/ZjjY0xz6+MXXUUS73tnUUJgmI+cZil/s6HGWu7V1YZVa2RSao0hv SMWo7E59bDsiGKpi7hDfCQ5t/rXEFBQ= 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-456-wUDMtwj7PLOF-ON3uLMMjQ-1; Mon, 16 Nov 2020 05:06:33 -0500 X-MC-Unique: wUDMtwj7PLOF-ON3uLMMjQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 88C771882FA0; Mon, 16 Nov 2020 10:06:32 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.194.2]) by smtp.corp.redhat.com (Postfix) with ESMTP id DF9045B4CC; Mon, 16 Nov 2020 10:06:30 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net Date: Mon, 16 Nov 2020 11:06:16 +0100 Message-Id: <20201116100618.2894-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 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 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH 1/3] test/eal: remove unneeded command 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" All EAL flags tests are run by calling the "eal_flags_autotest" command. There is no compatibility to maintain for sub commands only called by meson. Fixes: db27370b5720 ("eal: replace blacklist/whitelist options") Signed-off-by: David Marchand --- app/test/meson.build | 2 +- app/test/test_eal_flags.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/test/meson.build b/app/test/meson.build index 88c831a92e..94fd39fecb 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -195,7 +195,7 @@ fast_tests = [ ['eal_flags_n_opt_autotest', false], ['eal_flags_hpet_autotest', false], ['eal_flags_no_huge_autotest', false], - ['eal_flags_w_opt_autotest', false], + ['eal_flags_a_opt_autotest', false], ['eal_flags_b_opt_autotest', false], ['eal_flags_vdev_opt_autotest', false], ['eal_flags_r_opt_autotest', false], diff --git a/app/test/test_eal_flags.c b/app/test/test_eal_flags.c index 85b6c6d7c7..932fbe3d08 100644 --- a/app/test/test_eal_flags.c +++ b/app/test/test_eal_flags.c @@ -1546,7 +1546,6 @@ REGISTER_TEST_COMMAND(eal_flags_main_opt_autotest, test_main_lcore_flag); REGISTER_TEST_COMMAND(eal_flags_n_opt_autotest, test_invalid_n_flag); REGISTER_TEST_COMMAND(eal_flags_hpet_autotest, test_no_hpet_flag); REGISTER_TEST_COMMAND(eal_flags_no_huge_autotest, test_no_huge_flag); -REGISTER_TEST_COMMAND(eal_flags_w_opt_autotest, test_allow_flag); /* for legacy CI */ REGISTER_TEST_COMMAND(eal_flags_a_opt_autotest, test_allow_flag); REGISTER_TEST_COMMAND(eal_flags_b_opt_autotest, test_invalid_b_flag); REGISTER_TEST_COMMAND(eal_flags_vdev_opt_autotest, test_invalid_vdev_flag); -- 2.23.0