lyx_mirror/src/tests/test_layout
Georg Baum 952853eb23 Fix layout tests for autotools
This part was forgotten in 6f16814d3b.
2013-05-23 22:00:56 +02:00

14 lines
201 B
Bash
Executable File

#!/bin/sh
retval=0
for i in ${srcdir}/../lib/layouts/*.layout
do
echo Testing $i...
dn=`dirname $i`
bn=`basename $i .layout`
if ! ./check_layout ${dn}/${bn}; then
retval=1
fi
done
exit $retval