Avoid stop_autotests termination message when it is killed at normal termination of test-case.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37600 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Tommaso Cucinotta 2011-02-12 11:05:04 +00:00
parent c31d6acf65
commit 9e9874c0ab

View File

@ -60,7 +60,8 @@ if [ ! -d $LYX_HOME ]; then
fi
# Launch the emergency STOP button
./stop_autotests.tcl > /dev/null 2>&1 &
./stop_autotests.tcl &
pid=$!
echo "Running test cases . . ."
failed=0
@ -84,7 +85,8 @@ for t in $(echo "$TESTS" | sed -e 's/-in.txt//g'); do
fi;
done
killall stop_autotests.tcl > /dev/null 2>&1
kill $pid
wait $pid > /dev/null 2>&1
echo
if [ $failed -eq 0 ]; then