On 27-Apr-18 2:20 PM, Reshma Pattan wrote:
1. Sanity Script is enhanced with additional test cases
being added to autotest_data.py
2. Fixed in autotest_test_funcs.py to handle test cases
which returns "Skipped" as result.
The issue was skipped test cases got timed out,
causing delay in sanity script execution.
3. Enhanced support for FreeBSD to add the respective memory limit,
as FreeBSD doesn't support socket-mem, file-prefix options.
Signed-off-by: Jananee Parthasarathy <jananeex.m.parthasara...@intel.com>
---
<...>
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
-# Copyright(c) 2010-2014 Intel Corporation
+# Copyright(c) 2010-2018 Intel Corporation
# The main logic behind running autotests in parallel
@@ -201,6 +201,13 @@ def __init__(self, cmdline, target, blacklist, whitelist):
# set up cmdline string
def __get_cmdline(self, test):
cmdline = self.cmdline
+ os_name = platform.system()
+
+ # append the respective memory limitation on FREEBSD
+ # as socket-mem, file-prefix is not supported
+ if os_name == "FreeBSD" :
+ cmdline += " -m " + str(sum(map(int, test["Memory"].split(","))))
+ return cmdline
A better fix would've been to completely avoid calling __get_cmdline()
for FreeBSD. Since file prefixes are not supported, tests cannot be run
in parallel, so there is no need to limit allocated memory in the first
place, so neither -m nor --socket-mem switches need to be added either.
And without those, there's no need to modify the test cmdline at all.
--
Thanks,
Anatoly