Commit 86f48991 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

[t:4382] better signal handling, update/rebuild once per day


git-svn-id: file:///svn/toku/tokudb@38718 c7de825b-a66e-492c-adef-691d508d4ae1
parent 5d078fb3
......@@ -35,6 +35,8 @@ EOF
set -e
. /opt/intel/bin/compilervars.sh intel64
scriptname=$(basename "$0")
toku_toplevel=$(dirname $(dirname $(readlink -f "$PWD/$0")))
log=/tmp/run.stress-tests.log
......@@ -83,7 +85,7 @@ save_failure() {
num_ptquery=$1; shift
num_update=$1; shift
phase=$1; shift
dest="${dir}/${exec}-${table_size}-${cachetable_size}-${num_ptquery}-${num_update}-${phase}-$$"
dest="${dir}/${exec}-${table_size}-${cachetable_size}-${num_ptquery}-${num_update}-${phase}-${BASHPID}"
mkdir -p "$dest"
mv $out "${dest}/output.txt"
mv core* "${dest}/"
......@@ -106,7 +108,7 @@ run_test() {
t0="$(date)"
t1=""
t2=""
envdir="../${exec}-${table_size}-${cachetable_size}-${num_ptquery}-${num_update}-$$.dir"
envdir="../${exec}-${table_size}-${cachetable_size}-${num_ptquery}-${num_update}-${BASHPID}.dir"
cd $rundir
if ! LD_LIBRARY_PATH=../../../lib:$LD_LIBRARY_PATH \
../$exec -v --test --num_seconds 180 --envdir "$envdir" \
......@@ -137,6 +139,8 @@ run_test() {
rm -rf $rundir "$envdir"
}
running=no
loop_test() {
exec="$1"; shift
table_size="$1"; shift
......@@ -146,7 +150,7 @@ loop_test() {
ptquery_rand=0
update_rand=0
while true
while [[ $running = "yes" ]]
do
num_ptquery=1
num_update=1
......@@ -164,41 +168,40 @@ loop_test() {
done
}
cd $src_tests
for exec in ${testnames[@]}
do
if [[ ! -x $exec ]]
then
echo "Please build $exec" 1>&2
exit 1
fi
done
mkdir -p $log
mkdir -p $savedir
declare -a pids
declare -a pids=(0)
i=0
savepid() {
pids[i]=$1
pids[$i]=$1
(( i = i + 1 ))
}
killchildren() {
for pid in ${pids[@]}
do
kill $pid
done
kill ${pids[@]} || true
for exec in ${testnames[@]}
do
pkill -f $exec
pkill -f $exec || true
done
}
for exec in ${testnames[@]}
trap killchildren INT TERM EXIT
mkdir -p $log
mkdir -p $savedir
while true
do
(cd $toku_toplevel; \
svn update; \
make CC=icc DEBUG=0 HAVE_CILK=0 clean fastbuild; \
make CC=icc DEBUG=0 HAVE_CILK=0 -C src/tests ${testnames[@]})
cd $src_tests
running=yes
for exec in ${testnames[@]}
do
for table_size in 2000 200000 50000000
do
(( small_cachetable = table_size * 50 ))
......@@ -211,11 +214,20 @@ do
loop_test $exec $table_size 1000000000 "${log}/${suffix}" "${savedir}/${suffix}" & savepid $!
tail -f "${log}/${suffix}" & savepid $!
done
done
done
trap killchildren INT TERM EXIT
sleep 1d
for pid in ${pids[@]}
do
wait $pid
running=no
killchildren
wait ${pids[@]} || true
idx=0
for pid in ${pids[@]}
do
pids[$idx]=0
(( idx = idx + 1 ))
done
done
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment