diff options
author | Robert Managan <managan1@llnl.gov> | 2008-09-10 16:43:20 (GMT) |
---|---|---|
committer | Robert Managan <managan1@llnl.gov> | 2008-09-10 16:43:20 (GMT) |
commit | fea8478717f8cce00ed0c0aa7d9ad79484bbd57c (patch) | |
tree | b28dbdbf322cb38b006752d51eefce93f0843224 /test | |
parent | 1c280140f557190a9625397bbe9e5a3a540efac5 (diff) | |
download | SCons-fea8478717f8cce00ed0c0aa7d9ad79484bbd57c.zip SCons-fea8478717f8cce00ed0c0aa7d9ad79484bbd57c.tar.gz SCons-fea8478717f8cce00ed0c0aa7d9ad79484bbd57c.tar.bz2 |
Add the ability of the Tex builder to change the name of the created
file to what the user requested in the target. Tex produces a standard name
based on the source so this was not being done.
Diffstat (limited to 'test')
-rw-r--r-- | test/TEX/rename_result.py | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/test/TEX/rename_result.py b/test/TEX/rename_result.py new file mode 100644 index 0000000..e14d502 --- /dev/null +++ b/test/TEX/rename_result.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python +# +# __COPYRIGHT__ +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# + +__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" + +""" +Validate that we can rename the output from latex to the +target name provided by the user. +""" + +import os +import os.path +import string +import sys +import TestSCons + +_python_ = TestSCons._python_ + +test = TestSCons.TestSCons() + +latex = test.where_is('latex') + +if not latex: + test.skip_test('could not find latex; skipping test\n') + +test.write('SConstruct', """ +import os +ENV = { 'PATH' : os.environ['PATH'], + 'TEXINPUTS' : [ 'subdir', os.environ.get('TEXINPUTS', '') ] } +foo = Environment(ENV = ENV) +foo.DVI(target = 'foobar.dvi', source = 'foo.ltx') +foo.PDF(target = 'bar.xyz', source = 'bar.ltx') +""" % locals()) + +test.write('foo.ltx', r""" +\documentclass{letter} +\begin{document} +This is the foo.ltx file. +\end{document} +""") + +test.write('bar.ltx', r""" +\documentclass{letter} +\begin{document} +This is the bar.ltx file. +\end{document} +""") + +test.run(arguments = '.', stderr = None) + +test.must_exist('foobar.dvi') +test.must_not_exist('foo.dvi') + +test.must_exist('bar.xyz') +test.must_not_exist('bar.pdf') + +test.pass_test() |