1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
#!/bin/bash
#emacs: -*- mode: shell-script; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
#ex: set sts=4 ts=4 sw=4 noet:
#-------------------------- =+- Shell script -+= --------------------------
#
# @file run_tests.sh
# @date Tue Aug 9 19:18:57 2011
# @brief
#
#
# Yaroslav Halchenko Dartmouth
# web: http://www.onerussian.com College
# e-mail: yoh@onerussian.com ICQ#: 60653192
#
# DESCRIPTION (NOTES):
#
# Little helper script to check either tests/demos
#
# COPYRIGHT: Yaroslav Halchenko 2011
#
# LICENSE: MIT
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#-----------------\____________________________________/------------------
set -u
verbose=1
out=build/tests_output_`date +"20%y%m%d%H%M%S"`
mkdir -p "$out"
echo "I: Storing logs and output under $out"
basedir=$PWD
out=$PWD/$out # make it full path
XVFB_OPTS="-screen 0 1024x768x24 -ac +extension GLX +render -noreset"
PATH_CMDS="addpath (genpath ('$PWD/Psychtoolbox')); addpath('$PWD/Psychtoolbox/PsychBasic/Octave3LinuxFiles/');"
failed=
{
for f in "$@"; do
# Set time limit depending on either it is a test or a demo
[[ $f =~ PsychTests ]] && timelimit=30 || timelimit=15
timeescape=$(($timelimit - 5))
timelimitkill=$(($timelimit + 5))
echo -n "I: $f: ";
fbase=$(basename $f)
fdir=$(dirname $f)
outlog="$out/${fbase%.*}.log"
# if it is a function -- eval it, otherwise run the script
if true; then # grep -v '^[% ]*$' $f | head -1 | grep -q -e '^ *function'; then
test="${fbase%.m}"
# Some tests/demos might like to have initial kick to
# start them, so let's press Enter if script contains
# KbStrokeWait anywhere
if grep -q KbStrokeWait $f; then
keypress="( sleep 2; xdotool key Return ) &"
else
keypress=
fi
# cd to the test's directory since it might needs some of
# local files there
cd $fdir
xvfb-run --auto-servernum --server-num=20 -s "$XVFB_OPTS" \
bash -c "$keypress ( sleep $timeescape; xdotool key Escape Escape Escape Escape Escape Escape Escape 2>/dev/null 1>&2; ) & \
timeout --kill-after=$timelimitkill $timelimit \
octave -q --eval \"$PATH_CMDS; PsychTweak('PrepareForVirtualMachine'); $test\" >| $outlog 2>&1"
rv=$?
cd "$basedir"
else
# just run it then
# XXX -- TODO
#timeout --kill-after=$timelimitkill $timelimit \
# octave -q $f >| $outlog 2>&1
echo -n "I: Skipping since it is not a function "
rv=123
fi
# time to kill our xdotool
#kill %1 &>/dev/null || :
if [ $rv = 124 ]; then st='TIMEOUT';
elif [ $rv = 123 ]; then st='SKIPPED';
elif [ $rv = 0 ]; then st='OK';
else
fout="`grep -v octave-core $outlog | tail -1`"; st="E: FAILED $fout";
[ x"$verbose" = x ] || { echo; sed -e 's,^, D: ,g' $outlog; }
echo $f >> $out/failed.log
fi
echo $st
done;
} | tee $out.log
if [ -e $out/failed.log ]; then
echo "I: We are failing since following tests failed:"
cat $out/failed.log
echo "I: see full log at $out.log"
exit 1
fi
|