From 0f2b721f5454dd98851be5416e144f81c976d2cd Mon Sep 17 00:00:00 2001 From: JingLu5 Date: Fri, 1 Sep 2017 02:55:52 +0000 Subject: testcase: add rate parameter for spec cpu 2006 Change-Id: I5f1634d2a30eb93b4632e4773cee3f8b7a151b1f Signed-off-by: JingLu5 --- yardstick/benchmark/scenarios/compute/spec_cpu.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'yardstick/benchmark/scenarios/compute') diff --git a/yardstick/benchmark/scenarios/compute/spec_cpu.py b/yardstick/benchmark/scenarios/compute/spec_cpu.py index 520618631..df361cd94 100644 --- a/yardstick/benchmark/scenarios/compute/spec_cpu.py +++ b/yardstick/benchmark/scenarios/compute/spec_cpu.py @@ -103,6 +103,9 @@ class SpecCPU(base.Scenario): cmd = "cd /usr/cpu2006/ && . ./shrc && runspec --config %s" % self.runspec_config cmd_args = "" + if "rate" in self.options: + cmd_args += " --rate %s" % self.options["runspec_rate"] + if "output_format" in self.options: cmd_args += " --output_format %s" % self.options["output_format"] -- cgit 1.2.3-korg