lyx_mirror/development/autotests/export-in.sh
Scott Kostyshak 9f4927e855 Add examples to export tests (CMake & autotools)
Now all export tests can be run with:
ctest -R "export"

Only export tests for manuals can be run with:
ctest -R "export/doc"

And only export tests for examples can be run with:
ctest -R "export/examples"
2013-02-16 06:27:09 -05:00

24 lines
533 B
Bash
Executable File

#!/bin/bash
failed=0
for libsubdir in doc examples; do
for format in xhtml lyx16x; do
for f in $LYX_ROOT/lib/$libsubdir/*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;
done
if [ $failed -eq 0 ]; then
echo "All formats SUCCESSFUL"
exit 0;
else
echo "There were $failed FAILED format tests"
exit -1;
fi