From 8a4f8df64b8897bf38e77399099099f92266048b Mon Sep 17 00:00:00 2001 From: qiujuan Date: Mon, 30 May 2016 21:15:53 +0800 Subject: Creating a generic attacker JIRA: YARDSTICK-273 Change-Id: Id81b554b559d14ced440a1fa004d14d791fd2306 Signed-off-by: qiujuan --- yardstick/benchmark/scenarios/availability/util.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 yardstick/benchmark/scenarios/availability/util.py (limited to 'yardstick/benchmark/scenarios/availability/util.py') diff --git a/yardstick/benchmark/scenarios/availability/util.py b/yardstick/benchmark/scenarios/availability/util.py new file mode 100644 index 000000000..2addef8ef --- /dev/null +++ b/yardstick/benchmark/scenarios/availability/util.py @@ -0,0 +1,19 @@ +############################################################################## +# Copyright (c) 2016 Juan Qiu +# juan_ qiu@tongji.edu.cn +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + +def buildshellparams(param): + i = 0 + values = [] + result = '/bin/bash -s' + for key in param.keys(): + values.append(param[key]) + result += " {%d}" % i + i = i + 1 + return result -- cgit 1.2.3-korg