From: Michal Sojka Date: Sat, 4 Dec 2010 15:42:38 +0000 (+0100) Subject: Encode host kernel version to the test results X-Git-Tag: fix-allnoconfig~249 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/commitdiff_plain/b193139357e1d1ce5909be8e1793b6d349675bdf Encode host kernel version to the test results --- diff --git a/gw-tests/lib.sh b/gw-tests/lib.sh index f384587..43afe6d 100644 --- a/gw-tests/lib.sh +++ b/gw-tests/lib.sh @@ -59,16 +59,6 @@ _plot() { } -create_dirs() { - local kver=$1 - local traffic=$2 - local test=$3 - - local d=results/$kver/$traffic/$test - mkdir -p $d - echo $d -} - echo_plot() { plot=$1 [[ "$_plot_separator" ]] && echo ", \\" @@ -98,7 +88,8 @@ _run() { fi for OPT_TRAFFIC in $traffics; do for kvers in $kernel_versions; do - dir=$(create_dirs $kvers $OPT_TRAFFIC $(basename $0 .sh)) + dir="results/host-$(uname -r)/$kvers/$OPT_TRAFFIC/$(basename $0 .sh)" + mkdir -p $dir script=$PWD/$0 cd $dir echo "Working directory: $dir"