From patchwork Mon Jun 13 07:37:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 112685 X-Patchwork-Delegate: thomas@monjalon.net 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 04504A0543; Mon, 13 Jun 2022 09:37:20 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E0E1840223; Mon, 13 Jun 2022 09:37:19 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 1834D4069C for ; Mon, 13 Jun 2022 09:37:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1655105838; 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=WNwvpFlOw34fsa58pGnYxk1Eaw7QzZPKrIHapXgwR9w=; b=ipKozTZgafuqQlKIepYH7Qy40jgMkWaXicfZqd4TV9Q3zu7WDBf6ewtZbMZoa4BLx0eJiF yIy1tzY8zB3T9KuBgGrWIdGA+oOEwHv9tOBHSrsTFasKeLKrBOFLKgeOMewXX1F9acgSV0 sUolXL7VAfvh2rV/mkRrBf6Rl2MPWQA= 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-341-ZeA1TekfNpWcwJHz7jywUA-1; Mon, 13 Jun 2022 03:37:15 -0400 X-MC-Unique: ZeA1TekfNpWcwJHz7jywUA-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 1617F800124; Mon, 13 Jun 2022 07:37:15 +0000 (UTC) Received: from localhost.localdomain (unknown [10.40.193.24]) by smtp.corp.redhat.com (Postfix) with ESMTP id 731CAC53360; Mon, 13 Jun 2022 07:37:14 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org Subject: [PATCH] test: drop reference to removed tests Date: Mon, 13 Jun 2022 09:37:00 +0200 Message-Id: <20220613073700.3222164-1-david.marchand@redhat.com> 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=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 cycles_autotest and delay_us_sleep_autotest tests were removed in the commit ee00af60170b ("test: remove strict timing requirements some tests") and were wrongly reintroduced later. Bugzilla ID: 1021 Fixes: 74822233bdc2 ("test: create a list of extra tests") Cc: stable@dpdk.org Signed-off-by: David Marchand --- app/test/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/test/meson.build b/app/test/meson.build index 7fe261cae8..a86382524e 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -250,8 +250,6 @@ fast_tests = [ # Tests known to have issues or which don't belong in other tests lists. extra_test_names = [ 'alarm_autotest', # ee00af60170b ("test: remove strict timing requirements some tests") - 'cycles_autotest', # ee00af60170b ("test: remove strict timing requirements some tests") - 'delay_us_sleep_autotest', # ee00af60170b ("test: remove strict timing requirements some tests") 'red_autotest', # https://bugs.dpdk.org/show_bug.cgi?id=826 ]