mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
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:
parent
c31d6acf65
commit
9e9874c0ab
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user