From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 2CE05A05D3 for ; Tue, 26 Mar 2019 09:09:22 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DFDF42BF4; Tue, 26 Mar 2019 09:09:21 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 0B9722B9A for ; Tue, 26 Mar 2019 09:09:20 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Mar 2019 01:09:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,271,1549958400"; d="scan'208";a="155228983" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 26 Mar 2019 01:09:19 -0700 From: changqingxwu To: dts@dpdk.org Cc: changqingxwu Date: Tue, 26 Mar 2019 16:05:17 +0800 Message-Id: <1553587517-86856-1-git-send-email-changqingx.wu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] framework/project_dpdk:delete the specified compiler 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" Signed-off-by: changqingxwu --- framework/project_dpdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index 6035c68..42ff3d6 100644 --- a/framework/project_dpdk.py +++ b/framework/project_dpdk.py @@ -236,7 +236,7 @@ class DPDKdut(Dut): self.send_expect("rm -rf %s" % r'./app/test/test_pci_sysfs.res.o' , "#") build_time = 120 # compile - out = self.send_expect("make -j %d install T=%s CC=gcc48" % (self.number_of_cores, + out = self.send_expect("make -j %d install T=%s" % (self.number_of_cores, target), "#", build_time) if("Error" in out or "No rule to make" in out): -- 2.17.2