From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 8209656A8 for ; Thu, 22 Sep 2016 04:44:27 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 21 Sep 2016 19:44:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,376,1470726000"; d="scan'208";a="1034480432" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by orsmga001.jf.intel.com with ESMTP; 21 Sep 2016 19:44:26 -0700 From: "xu,gang" To: dts@dpdk.org Cc: "xu,gang" Date: Thu, 22 Sep 2016 10:45:58 +0800 Message-Id: <1474512358-25685-3-git-send-email-gangx.xu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1474512358-25685-1-git-send-email-gangx.xu@intel.com> References: <1474512358-25685-1-git-send-email-gangx.xu@intel.com> Subject: [dts] [PATCH V2 4/5] fix TestSuite coremask 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: , X-List-Received-Date: Thu, 22 Sep 2016 02:44:27 -0000 on FreeBSD this command output is divided into standard errors and the standard output copy standard error to standard output import out file, check all them Signed-off-by: xu,gang --- tests/TestSuite_coremask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_coremask.py b/tests/TestSuite_coremask.py index 9fd039d..2458d8f 100644 --- a/tests/TestSuite_coremask.py +++ b/tests/TestSuite_coremask.py @@ -104,7 +104,7 @@ class TestCoremask(TestCase): Check coremask parsing for more cores than available. """ - command_line = """./%s/app/test -c %s -n %d --log-level 8|tee out""" + command_line = """./%s/app/test -c %s -n %d --log-level 8 2 > &1 |tee out""" # Default big coremask value 128 big_coremask_size = 128 -- 1.9.3