From da081ab2603eb34baf7d7fe7b61f681ef15d865e Mon Sep 17 00:00:00 2001 From: Martin Klozik Date: Mon, 25 Jan 2016 10:34:27 +0000 Subject: report: create test report for all executed TCs Every testcase generates report with its results into separate file. It is required to merge all partial reports into final overall report for whole set of TCs executed by VSPERF. Hugepages are mounted also for TestPMD packet forwarder. Change-Id: Iaa1ab4e08d1637106da804e06b7f30100d609cd6 JIRA: VSPERF-181 Signed-off-by: Martin Klozik Reviewed-by: Maryam Tahhan --- testcases/testcase.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'testcases') diff --git a/testcases/testcase.py b/testcases/testcase.py index 9c755ea7..d470d951 100644 --- a/testcases/testcase.py +++ b/testcases/testcase.py @@ -251,7 +251,9 @@ class TestCase(object): """ # hugepages are needed by DPDK and Qemu if not self._hugepages_mounted and \ - (self.deployment.count('v') or S.getValue('VSWITCH').lower().count('dpdk')): + (self.deployment.count('v') or \ + S.getValue('VSWITCH').lower().count('dpdk') or \ + self._vswitch_none): hugepages.mount_hugepages() self._hugepages_mounted = True -- cgit 1.2.3-korg