summaryrefslogtreecommitdiffstats
path: root/test/TEX
diff options
context:
space:
mode:
authorGreg Noel <GregNoel@tigris.org>2010-05-30 06:03:04 (GMT)
committerGreg Noel <GregNoel@tigris.org>2010-05-30 06:03:04 (GMT)
commit0f086e238c98ae8fdc393a4759299ad0db1483d6 (patch)
tree48beeaa12f3e22cb5ea4308611cb070bfd7d1de9 /test/TEX
parentf8098968bdca6e11a1cc1daa0df70f801c4e251f (diff)
downloadSCons-0f086e238c98ae8fdc393a4759299ad0db1483d6.zip
SCons-0f086e238c98ae8fdc393a4759299ad0db1483d6.tar.gz
SCons-0f086e238c98ae8fdc393a4759299ad0db1483d6.tar.bz2
Prepare for checkpoint release. Everything should be set up and ready
to go. Update various files to have the correct date, time, version, and floor. Rework Script/Main.py and QMTest/TestSCons.py to make automated updating possible in the future. Remove a duplicate MANIFEST-xml.in entry. Fix TeX tests, which ran 'kpsewitch' before determining if the TeX tools were installed.
Diffstat (limited to 'test/TEX')
-rw-r--r--test/TEX/glossaries.py2
-rw-r--r--test/TEX/glossary.py2
-rw-r--r--test/TEX/nomencl.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/TEX/glossaries.py b/test/TEX/glossaries.py
index 2a3ca82..4050189 100644
--- a/test/TEX/glossaries.py
+++ b/test/TEX/glossaries.py
@@ -37,11 +37,11 @@ import TestSCons
test = TestSCons.TestSCons()
latex = test.where_is('latex')
-gloss = os.system('kpsewhich glossaries.sty')
if not latex:
test.skip_test("Could not find latex; skipping test(s).\n")
+gloss = os.system('kpsewhich glossaries.sty')
if not gloss==0:
test.skip_test("glossaries.sty not installed; skipping test(s).\n")
diff --git a/test/TEX/glossary.py b/test/TEX/glossary.py
index 423ffc7..be0a870 100644
--- a/test/TEX/glossary.py
+++ b/test/TEX/glossary.py
@@ -37,11 +37,11 @@ import TestSCons
test = TestSCons.TestSCons()
latex = test.where_is('latex')
-gloss = os.system('kpsewhich glossary.sty')
if not latex:
test.skip_test("Could not find latex; skipping test(s).\n")
+gloss = os.system('kpsewhich glossary.sty')
if not gloss==0:
test.skip_test("glossary.sty not installed; skipping test(s).\n")
diff --git a/test/TEX/nomencl.py b/test/TEX/nomencl.py
index 2aadeef..93a3c3b 100644
--- a/test/TEX/nomencl.py
+++ b/test/TEX/nomencl.py
@@ -37,11 +37,11 @@ import TestSCons
test = TestSCons.TestSCons()
latex = test.where_is('latex')
-nomencl = os.system('kpsewhich nomencl.sty')
if not latex:
test.skip_test("Could not find latex; skipping test(s).\n")
+nomencl = os.system('kpsewhich nomencl.sty')
if not nomencl==0:
test.skip_test("nomencl.sty not installed; skipping test(s).\n")