This is a basic script is designed to automate the testing process (for
a single compiler) and generate delimited text output suitable for later
processing. All test parameters can be supplied via the environment, or
defaults will be used for them. The following variables affect the
script and if not supplied, will have the these default values:

CC              "gcc"
KERNELDIR       "../../../../.."
CFLAGS          "-O2 -pipe -march=k8"
key_type        "u64"
payload         0
use_leftmost    0
use_rightmost   0
use_count       0
unique_keys     0
insert_replaces 0
test_num        0

reps            0x20000
count           0x800
keymask         0xfff

logfile         runtest.log
datafile        runtest.out

Signed-off-by: Daniel Santos <[email protected]>
---
 tools/testing/selftests/grbtree/user/runtest.sh |  122 +++++++++++++++++++++++
 1 files changed, 122 insertions(+), 0 deletions(-)
 create mode 100755 tools/testing/selftests/grbtree/user/runtest.sh

diff --git a/tools/testing/selftests/grbtree/user/runtest.sh 
b/tools/testing/selftests/grbtree/user/runtest.sh
new file mode 100755
index 0000000..b481ad3
--- /dev/null
+++ b/tools/testing/selftests/grbtree/user/runtest.sh
@@ -0,0 +1,122 @@
+#!/bin/bash
+
+# runtest.sh - script to compile and run userspace tests of gerneric red-black
+#              tree implementation for a single compiler.
+#
+# Copyright (C) 2012  Daniel Santos <[email protected]>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
+
+die() {
+       echo "ERROR${@:+": "}$@" 1>&2
+       exit -1
+}
+
+set_var_default() {
+       (($# == 2)) || die "set_var_default takes two parameters, got $#: $@"
+
+       var="$1"
+       default_val="$2"
+       cur_val=$(eval echo "\$${var}")
+
+       if [[ -z "${cur_val}" ]]; then
+               eval ${var}=\"${default_val}\"
+       fi
+}
+
+# Variables affecting code generation
+set_var_default CC             gcc
+set_var_default KERNELDIR      "../../../../.."
+set_var_default CFLAGS         "-O2 -pipe -march=k8"
+# CONFIG parameters:
+set_var_default key_type       u64
+set_var_default payload                0
+set_var_default use_leftmost   0
+set_var_default use_rightmost  0
+set_var_default use_count      0
+set_var_default unique_keys    0
+set_var_default insert_replaces        0
+# For test_num, see grbtest -h
+set_var_default test_num       0
+
+# Variables passed to grbtest program
+set_var_default reps           0x20000
+set_var_default count          0x800
+set_var_default keymask                0xfff
+
+# Output files
+set_var_default logfile                runtest.log
+set_var_default datafile       runtest.out
+
+
+build_desc[0]="hand-coded"
+build_desc[1]="generic"
+
+. /etc/profile || die
+
+do_cpp() {
+       echo "$1" > /tmp/gnucver.$$.c || die
+       ${CC} -E /tmp/gnucver.$$.c | grep -v '^#' | tr -d ' '
+       rm /tmp/gnucver.$$.c
+}
+
+gccverstr=$(do_cpp "__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__") || die
+
+execute_tests() {
+       for build_generic in 1 0; do
+               CONFIG=$(echo                                           \
+                       -DGRBTEST_KEY_TYPE=${key_type}                  \
+                       -DGRBTEST_PAYLOAD=${payload}                    \
+                       -DGRBTEST_BUILD_GENERIC=${build_generic}        \
+                       -DGRBTEST_USE_LEFTMOST=${use_leftmost}          \
+                       -DGRBTEST_USE_RIGHTMOST=${use_rightmost}        \
+                       -DGRBTEST_USE_COUNT=${use_count}                \
+                       -DGRBTEST_UNIQUE_KEYS=${unique_keys}            \
+                       -DGRBTEST_INSERT_REPLACES=${insert_replaces}
+               )
+
+               echo "********************************************************"
+               echo "Starting build at $(date '+%Y-%m-%d %H:%M:%S')..."
+               echo "  build_type = ${build_desc[${build_generic}]}"
+               echo "  compiler   = ${gccverstr}"
+               echo "  CFLAGS     = ${CFLAGS}"
+               echo "  KERNELDIR  = ${KERNELDIR}"
+               echo
+
+               #set -x
+               CC="${CC}"                      \
+               CFLAGS="${CFLAGS}"              \
+               CONFIG="${CONFIG}"              \
+               KERNELDIR="${KERNELDIR}"        \
+               make clean all || die
+               set +x
+
+               echo
+               echo "Executing test..."
+               echo
+cp common.o prof/common-${build_desc[${build_generic}]}.o
+               ./grbtest --seed 1              \
+                         --reps ${reps}        \
+                         --count ${count}      \
+                         --keymask ${keymask}  \
+                         --delim "|"           \
+                         --quote ""            \
+                         --test ${test_num} | tee -a "${datafile}"
+               echo
+               echo
+       done
+}
+
+execute_tests | tee -a ${logfile}
-- 
1.7.3.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to