From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id 06FA54C93 for ; Tue, 14 Aug 2018 13:07:00 +0200 (CEST) Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=lap.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fpXAB-0000wO-Oc; Tue, 14 Aug 2018 11:06:59 +0000 From: Christian Ehrhardt To: Anatoly Burakov Cc: dpdk stable Date: Tue, 14 Aug 2018 13:06:04 +0200 Message-Id: <20180814110651.25277-1-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-stable] patch 'test: fix result printing' has been queued to stable release 18.05.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 11:07:00 -0000 Hi, FYI, your patch has been queued to stable release 18.05.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 08/16/18. So please shout if anyone has objections. Thanks. Christian Ehrhardt --- >>From e4bdaf17335663d09693da7ae6b04aee4706c810 Mon Sep 17 00:00:00 2001 From: Anatoly Burakov Date: Fri, 27 Jul 2018 10:40:11 +0100 Subject: [PATCH] test: fix result printing [ upstream commit 9c197a2389730e0a1ad9473a5c3fb127a36d6f12 ] Previously, printing was done using tuple syntax, which caused output to appear as a tuple as opposed to being one string. Fix this by using addition operator instead. Fixes: 54ca545dce4b ("make python scripts python2/3 compliant") Signed-off-by: Anatoly Burakov --- test/test/autotest_runner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test/autotest_runner.py b/test/test/autotest_runner.py index a692f0697..b09b57876 100644 --- a/test/test/autotest_runner.py +++ b/test/test/autotest_runner.py @@ -247,7 +247,7 @@ class AutotestRunner: # don't print out total time every line, it's the same anyway if i == len(results) - 1: - print(result, + print(result + "[%02dm %02ds]" % (total_time / 60, total_time % 60)) else: print(result) @@ -332,8 +332,8 @@ class AutotestRunner: # create table header print("") - print("Test name".ljust(30), "Test result".ljust(29), - "Test".center(9), "Total".center(9)) + print("Test name".ljust(30) + "Test result".ljust(29) + + "Test".center(9) + "Total".center(9)) print("=" * 80) # make a note of tests start time -- 2.17.1