summaryrefslogtreecommitdiffstats
path: root/test/TEX/dryrun.py
Commit message (Collapse)AuthorAgeFilesLines
* Update path information for OSX.Robert Managan2011-09-061-2/+1
| | | | | | If one of the tools that use TeX applications is generated add the paths in /etc/paths and /etc/paths.d version 10.5 (Leopard)
* Update tex builder to use the -recorder option.Robert Managan2009-07-221-1/+1
| | | | | | | | | | | | | | | | | This was prompted because MikTeX, used on Windows, does not put the same information on files opened into the log file. The -recorder option gives a .fls file that is the same on all platforms. We still use the .log file contents to find warnings and errors that mean we need to rerun latex... Also add message about errors so user does not have to scroll up through all the latex output to find if there was an error. Update all tests to handle the new command line option. Add one more test on grpahics conversion.
* Remove more unnecessary imports from test scripts.Steven Knight2009-02-111-2/+0
|
* Add emacs and vim editing settings to the bottom of *.py files.Steven Knight2009-02-091-0/+6
|
* Remove (lots) more unnecessary imports.Steven Knight2009-02-061-3/+1
|
* Added a strfunction to the various tex builders. Since the sub-actions reportRobert Managan2008-09-041-0/+67
their commands as they build the strfunction only returns a string for GetOption("no_exec") which covers --dry-run. Therefore --dry-run now gets output, the first command to be run plus " ..." to indicate that the ral builder may repeat or run bibtex, makeindex,... Also updating the flags to pass -interaction=nonstopmode This prevents errors in the .tex files from stopping the build while Latex asks for input. Updated several tests to handle this new flag by switching to getopt module