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 F021DA05D3 for ; Tue, 26 Mar 2019 09:42:25 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B15902C19; Tue, 26 Mar 2019 09:42:25 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id B391F2BFA for ; Tue, 26 Mar 2019 09:42:23 +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 fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Mar 2019 01:42:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,271,1549958400"; d="scan'208";a="155236333" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 26 Mar 2019 01:42:21 -0700 From: changqingxwu To: dts@dpdk.org Cc: changqingxwu Date: Tue, 26 Mar 2019 16:32:20 +0800 Message-Id: <1553589140-87124-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 of freebsd 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index 6035c68..bc26f55 100644 --- a/framework/project_dpdk.py +++ b/framework/project_dpdk.py @@ -236,13 +236,13 @@ 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): self.logger.error("ERROR - try without '-j'") # if Error try to execute make without -j option - out = self.send_expect("make install T=%s CC=gcc48" % target, + out = self.send_expect("make install T=%s" % target, "#", build_time) assert ("Error" not in out), "Compilation error..." -- 2.17.2