diff options
Diffstat (limited to 'Build/source/texk/web2c/triptrap/texmf.cnf')
-rw-r--r-- | Build/source/texk/web2c/triptrap/texmf.cnf | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/triptrap/texmf.cnf b/Build/source/texk/web2c/triptrap/texmf.cnf new file mode 100644 index 00000000000..5682426c764 --- /dev/null +++ b/Build/source/texk/web2c/triptrap/texmf.cnf @@ -0,0 +1,91 @@ +% triptrap/texmf.cnf -- configuration for the trip and trap tests. + +% These values apply to all the programs, and they are necessary for any +% kind of reasonable diff. +error_line = 64 +half_error_line = 32 +max_print_line = 72 + +% TeX, Metafont, and MetaPost. +mem_bot.tex = 1 +main_memory.tex = 3000 +main_memory.mf = 3001 +main_memory.mpost = 4501 + +% In case you happen to run an ini* link by hand. +mem_bot.initex = 1 +main_memory.initex = 3000 +main_memory.inimf = 3001 +main_memory.inimpost = 4501 + +% Actually, Metafont currently ignores the settings for max_strings, +% string_vacancies and pool_size specified here, but it doesn't hurt +% to supply the correct values, just in case this changes one day. + +max_strings.tex = 3000 +max_strings.mf = 2000 +max_strings.mpost = 2500 + +% In case you happen to run an ini* link by hand. +max_strings.initex = 3000 +max_strings.inimf = 2000 +max_strings.inimpost = 2500 + +string_vacancies = 8000 +pool_size = 40000 + +% TeX only. +font_mem_size = 20000 +font_max = 75 +stack_size = 200 +nest_size = 40 +buf_size = 500 +save_size = 600 +dvi_buf_size = 800 +% Although hyph_size is settable, it can't be <hyph_prime, which is 607, +% and the original trip setting is 307, so no point in changing the default. + +% Metafont only. +gf_buf_size = 8 % trapman.tex says to use this. +MFTERM = trap % get the right screen output +% trapman.tex says these values will help reduce the diffs, but it +% actually only gives us one extra hunk (a BLANKRECTANGLE), so they +% don't seem worth dynamicizing. +%screen_width = 100 +%screen_depth = 200 + +% MetaPost only. Turn off callmakempx, i.e., makempx, +% since we can only test tex and dvitomp, and we'll test those in other +% places anyway. (mpto fails because of the unending string constant +% check in trap.mp.) +MPXCOMMAND = 0 + +% Avoid running any MakeTeX* program. +MAKETEXTFM = 0 +MAKETEXTEX = 0 +MAKETEXMF = 0 + +% Avoid reading any texfonts.map: +TEXFONTMAPS = triptrap + +% Search paths. +% trip.tex: +TEXINPUTS = . +% trap.mf: +MFINPUTS = . +% trap.mp, mtrap.mp: +MPINPUTS = . +% trip.tfm, trap.tfm, trapf.tfm: +TFMFONTS = . +% trip.fmt: +TEXFORMATS = . +% trap.base: +MFBASES = . +% trap.mem: +MPMEMS = . +% tex.pool: +TEXPOOL = . +% mf.pool: +MFPOOL = . +% mp.pool: +MPPOOL = . |