From patchwork Thu Sep 14 10:42:14 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 135 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 21F7142596; Thu, 14 Sep 2023 12:42:26 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AC8C7402AD; Thu, 14 Sep 2023 12:42:25 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id A521740289 for ; Thu, 14 Sep 2023 12:42:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1694688143; x=1726224143; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=43P3ejddZSpVbpG8hDZu7OCnHUNYC7qX6Be/wv/MQ3I=; b=C0Ad3TaG3h/MT1BIU9SA6fWDRbBcb+tdrUi54zjlWbSETOh7kyCKcnKe yGeHPNRp6rw7FpfpEXgtnhu9qgz5Ah57Q6bpgZJkUrzZtyHi5QbiZ+HGc ju2TJDCKm9vZdpANVGEjI7bkuSjOJLVkPnGqA24x9hYRqgbQ3xS+DMuxF rTiblLLHBeWqkmajblaEe5IMlmyKXl496QDsP1NCP8D14/GhxywybVv37 8ZQZAkWzPB2hUwJVyCX+t1cdTi2lgPOlbgk1l5MjWElCRmRE2mGkB5ZP4 av0bR+ucm//Byo5IfiWPpMH1bGn9s3sO5KMBk+mdbRiHYK7tos7iyRF7k A==; X-IronPort-AV: E=McAfee;i="6600,9927,10832"; a="378834377" X-IronPort-AV: E=Sophos;i="6.02,145,1688454000"; d="scan'208";a="378834377" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Sep 2023 03:42:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10832"; a="918204052" X-IronPort-AV: E=Sophos;i="6.02,145,1688454000"; d="scan'208";a="918204052" Received: from silpixa00401385.ir.intel.com ([10.237.214.14]) by orsmga005.jf.intel.com with ESMTP; 14 Sep 2023 03:42:21 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 0/1] make file prefix unit test more resilient Date: Thu, 14 Sep 2023 11:42:14 +0100 Message-Id: <20230914104215.71408-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 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 When examining the IOL testing failures for patch series [1], I observed that the failures reported were in the eal_flags_file_prefix unit test. I was able to reproduce this on my system by passing an additional "--on-pci" flag to the test run, since the log to the test has errors about device availability. Adding the "no-pci" flag to the individual test commands used by the unit tests fixed the issue thereafter, allowing the test to pass in all cases for me. Therefore, I am submitting this patch in the hopes of making the test more robust, since the observed failures seem unrelated to the original patchset [1] I submitted. [1] http://patches.dpdk.org/project/dpdk/list/?series=29406 Bruce Richardson (1): app/test: skip PCI bus scan when testing prefix flags app/test/test_eal_flags.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-)