diff options
author | Robert Managan <ramanagan@att.net> | 2012-10-13 18:16:29 (GMT) |
---|---|---|
committer | Robert Managan <ramanagan@att.net> | 2012-10-13 18:16:29 (GMT) |
commit | 1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b (patch) | |
tree | 363537e4a7b4ebc502c41ed9b5a878df94512a0c /test/TEX/lstinputlisting.py | |
parent | 101c5aa6e19f7498e0723515d3274e4be6bed20a (diff) | |
download | SCons-1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b.zip SCons-1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b.tar.gz SCons-1c207c1d7c9b7b339f5dd2ad772c7c22e600e61b.tar.bz2 |
Fix test for presence of biber and in several tests make variable names consistent with what we are testing the presence of
Diffstat (limited to 'test/TEX/lstinputlisting.py')
-rw-r--r-- | test/TEX/lstinputlisting.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TEX/lstinputlisting.py b/test/TEX/lstinputlisting.py index 66676ed..fcfe5a8 100644 --- a/test/TEX/lstinputlisting.py +++ b/test/TEX/lstinputlisting.py @@ -41,8 +41,8 @@ pdflatex = test.where_is('pdflatex') if not pdflatex: test.skip_test("Could not find pdflatex; skipping test(s).\n") -gloss = os.system('kpsewhich listings.sty') -if not gloss==0: +listings = os.system('kpsewhich listings.sty') +if not listings==0: test.skip_test("listings.sty not installed; skipping test(s).\n") test.write(['SConstruct'], """\ |