[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 15/27] ts-kernbench-run: kick off the benchmark on the target
There is a runvar called 'kernbench_params', for specifying the benchmark's runtime arguments. Signed-off-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> Cc: Ian Campbell <Ian.Campbell@xxxxxxxxxx> Cc: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- ts-kernbench-run | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 ts-kernbench-run diff --git a/ts-kernbench-run b/ts-kernbench-run new file mode 100755 index 0000000..389f6b3 --- /dev/null +++ b/ts-kernbench-run @@ -0,0 +1,63 @@ +#!/usr/bin/perl -w +# This is part of "osstest", an automated testing framework for Xen. +# Copyright (C) 2009-2014 Citrix Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +use strict qw(vars); +use DBI; +use Osstest; +use Osstest::TestSupport; + +tsreadconfig(); + +# what we expect as argument list is: +# host=<somehost> [<someguest>] +our ($whhost,$gn) = @ARGV; +$whhost ||= 'host'; +our $ho= selecthost($whhost); + +our $gho= $ho; +if (defined $gn and $gn ne "") { + $gho= selectguest($gn, $ho); + my $err= guest_check_ip($gho); + die "$err $gho->{Name}" if defined $err; +} + +# Runtime parameters for the benchmark. We expect them to be +# specified via a runvar. If not, let's provide a safe default. +if (!defined($r{ 'kernbench_params' })) { + store_runvar('kernbench_params',"-n 2"); +} +our $args= $r{'kernbench_params'}; +our $timeout= (defined($r{'kernbench_timeout'})) ? + $r{'kernbench_timeout'} : 12000; + +sub run() { + logm("Running: /root/linux-kernbench/../kernbench $args (timeout: $timeout)"); + target_cmd_root($gho, <<END, $timeout); + set -ex + cd /root/linux-kernbench/ + rm -f kernbench.log timelog + time ../kernbench $args +END +} + +sub hwinfo() { + target_catfile_root_stash($gho, "/proc/cpuinfo"); + target_catfile_root_stash($gho, "/proc/meminfo"); +} + +hwinfo(); +run(); _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |