]> git.lyx.org Git - lyx.git/blob - development/autotests/export-in.sh
Update my email and status.
[lyx.git] / development / autotests / export-in.sh
1 #!/bin/bash
2
3 failed=0
4 for format in xhtml lyx16x; do
5     for f in $LYX_ROOT/lib/doc/*lyx; do
6         if $LYX_EXE -e $format $f >> lyx-log.txt 2>&1; then
7             echo $format $f TEST_GOOD
8         else
9             echo $format $f TEST_BAD
10             failed=$[$failed+1];
11         fi;
12     done;
13 done
14
15 if [ $failed -eq 0 ]; then
16     echo "All formats SUCCESSFUL"
17     exit 0;
18 else
19     echo "There were $failed FAILED format tests"
20     exit -1;
21 fi