4487. [test] Make system tests work on Windows. [RT #42931]

This commit is contained in:
Witold Krecicki
2016-10-19 17:18:42 +02:00
parent 17697000bc
commit cc51cd2d20
273 changed files with 9139 additions and 559 deletions

View File

@@ -21,7 +21,12 @@ while [ $count != 300 ]; do
if [ $ticks = 1 ]; then
echo "I:Changing test zone..."
cp -f ns1/changing2.db ns1/changing.db
kill -HUP `cat ns1/named.pid`
if [ ! "$CYGWIN" ]; then
$KILL -HUP `cat ns1/named.pid`
else
$RDNC -c ../common/rndc.conf -s 10.53.0.1 \
-p 9953 reloade > /dev/null 2>&1
fi
fi
sleep 1
ticks=`expr $ticks + 1`