diff --git a/xml/regression.core.sh b/xml/regression.core.sh index fb9314090e..d7669ea9ce 100755 --- a/xml/regression.core.sh +++ b/xml/regression.core.sh @@ -1,102 +1,102 @@ #!/bin/bash # Copyright (C) 2004 Andrew Beekhof # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This software is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # verbose=$1 +io_dir=../pengine/test06 diff_opts="--ignore-all-space -u -N" failed=.regression.failed.diff # zero out the error log > $failed num_failed=0 function do_test { base=$1; shift name=$1; shift - io_dir=../pengine/test06 input=$io_dir/${base}.xml output=$io_dir/${base}.upgrade.xml expected=$io_dir/${base}.expected.xml if [ ! -f $input ]; then echo "Test $name ($base)... Error (PE : input)"; num_failed=`expr $num_failed + 1` return; fi echo "Test $base : $name"; if [ "$create_mode" != "true" -a ! -f $expected ]; then echo " Error (PE : expected)"; return; fi xsltproc --novalid upgrade06.xsl $input > $output if [ $? != 0 ]; then echo " * Failed (xml : xsltproc)"; num_failed=`expr $num_failed + 1` fi if [ ! -s $output ]; then echo " Error (xml : no conversion)"; num_failed=`expr $num_failed + 1` rm $output return; fi xmllint --relaxng pacemaker.rng $output > /dev/null 2>&1 if [ $? != 0 ]; then echo " * Failed (xml : xmllint)"; num_failed=`expr $num_failed + 1` xmllint --relaxng pacemaker-0.7.rng $output > /dev/null cat -n $output fi if [ "$create_mode" = "true" ]; then cp $output $expected fi diff $diff_opts $expected $output >/dev/null rc2=$? if [ $rc2 != 0 ]; then echo " * Failed"; diff $diff_opts $expected $output 2>/dev/null >> $failed echo "" >> $failed num_failed=`expr $num_failed + 1` else rm $output fi } function test_results { if [ $num_failed != 0 ]; then if [ -s $failed ]; then if [ "$verbose" = "-v" ]; then echo "Results of $num_failed failed tests...." less $failed else echo "Results of $num_failed failed tests are in $failed...." echo "Use $0 -v to display them automatically." fi else echo "$num_failed tests failed (no diff results)" rm $failed fi fi }