mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
bf5f1eb3e8
together with the others when typing 'make', and also they can be selectively launched by using: ./run-tests.sh filename-in.sh. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39241 a592a061-630c-0410-9148-cb99ea01b6c8
22 lines
439 B
Bash
Executable File
22 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
|
|
failed=0
|
|
for format in xhtml lyx16x; do
|
|
for f in $LYX_ROOT/lib/doc/*lyx; do
|
|
if $LYX_EXE -e $format $f >> lyx-log.txt 2>&1; then
|
|
echo $format $f TEST_GOOD
|
|
else
|
|
echo $format $f TEST_BAD
|
|
failed=$[$failed+1];
|
|
fi;
|
|
done;
|
|
done
|
|
|
|
if [ $failed -eq 0 ]; then
|
|
echo "All formats SUCCESSFUL"
|
|
exit 0;
|
|
else
|
|
echo "There were $failed FAILED format tests"
|
|
exit -1;
|
|
fi
|