From patchwork Mon Sep 7 11:10:28 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yu Jiang X-Patchwork-Id: 76678 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 49CE7A04B7; Mon, 7 Sep 2020 13:11:24 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 411BF1C0D7; Mon, 7 Sep 2020 13:11:24 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 7B2C01BE0C for ; Mon, 7 Sep 2020 13:11:22 +0200 (CEST) IronPort-SDR: xPmB4xY94q04PqqCFlfcQ6jJ2qLKSz47vhXS4lyD2/28wOuHguBCQEh4Zm1jYlDA1glCvwHQXa O67gBcvbS9/w== X-IronPort-AV: E=McAfee;i="6000,8403,9736"; a="222197510" X-IronPort-AV: E=Sophos;i="5.76,401,1592895600"; d="scan'208";a="222197510" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Sep 2020 04:11:22 -0700 IronPort-SDR: XIbDskflJ1prNxUMqsQW9HwBGptIcqQSXx0DP13Pcl43zyYF2QHtW70+jgYpB4rtz7K/k3IEBb s8aQXTZQ8MpA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,401,1592895600"; d="scan'208";a="316841796" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 07 Sep 2020 04:11:20 -0700 From: "Jiang, YuX" To: dts@dpdk.org Cc: "Jiang,yu" , Jiang@dpdk.org Date: Mon, 7 Sep 2020 19:10:28 +0800 Message-Id: <20200907111035.7697-3-yux.jiang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200907111035.7697-1-yux.jiang@intel.com> References: <20200907111035.7697-1-yux.jiang@intel.com> Subject: [dts] [PATCH V1 2/9] tests/TestSuite_fips_cryptodev: support meson build X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: "Jiang,yu" adapt to support both meson and makefile build Signed-off-by: Jiang,yu --- tests/TestSuite_fips_cryptodev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_fips_cryptodev.py b/tests/TestSuite_fips_cryptodev.py index aab2167..8c75d54 100644 --- a/tests/TestSuite_fips_cryptodev.py +++ b/tests/TestSuite_fips_cryptodev.py @@ -45,7 +45,7 @@ class FipCryptodev(TestCase): self.verify("No such"not in out,"Compilation error") self.vf_driver = self.get_suite_cfg()['vf_driver'] cc.bind_qat_device(self, "vfio-pci") - self._app_path = "./examples/fips_validation/build/fips_validation" + self._app_path = self.dut.apps_name['fips_validation'] self._default_fips_opts = { "req-file": None, "rsp-file": None,