2008-05-29 Jaap A. Haitsma <jaap@haitsma.org>
* tests/testrunner.sh:
Print errors on stdout. Fixes #535417
svn path=/trunk/; revision=1479
+2008-05-29 Jaap A. Haitsma <jaap@haitsma.org>
+
+ * tests/testrunner.sh:
+ Print errors on stdout. Fixes #535417
+
2008-05-29 Jürg Billeter <j@bitron.ch>
* tests/arrays.vala:
testbuild=`basename "$testsrc"`
if ! $VALAC -C --vapidir "$vapidir" --pkg gee-1.0 --basedir $topsrcdir -d $topbuilddir $testsrc.vala > $testbuild.err 2>&1
then
+ echo "ERROR: Compiling" $testcasesource
+ cat $testbuild.err
CODE=1
continue
fi
if ! $CC $CFLAGS $testbuild.c $(pkg-config --cflags --libs gobject-2.0) -o $testbuild $LDLIBS > $testbuild.err 2>&1
then
+ echo "ERROR: Compiling" $testbuild.c
+ cat $testbuild.err
CODE=1
continue
fi
then
rm $testbuild.c $testbuild.h $testbuild$exe $testbuild.err
else
+ echo "ERROR: test failed. This is the difference between" $testbuild.exp "and" $testbuild.err
+ diff -u $testbuild.exp $testbuild.err
CODE=1
fi
done