summaryrefslogtreecommitdiffstats
path: root/test/DVIPS/DVIPS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-10-08 00:58:12 (GMT)
committerSteven Knight <knight@baldmt.com>2008-10-08 00:58:12 (GMT)
commit2e72e2bba6d804961beaf8f2298138754e36ca24 (patch)
tree803afe9991218fcde7c656d868a4d1c198ba8bd3 /test/DVIPS/DVIPS.py
parent2dabf8c7f55ef2b65f0d2e216d2f9641575071d6 (diff)
downloadSCons-2e72e2bba6d804961beaf8f2298138754e36ca24.zip
SCons-2e72e2bba6d804961beaf8f2298138754e36ca24.tar.gz
SCons-2e72e2bba6d804961beaf8f2298138754e36ca24.tar.bz2
Update test scripts with more information must_*() methods.
Diffstat (limited to 'test/DVIPS/DVIPS.py')
-rw-r--r--test/DVIPS/DVIPS.py23
1 files changed, 11 insertions, 12 deletions
diff --git a/test/DVIPS/DVIPS.py b/test/DVIPS/DVIPS.py
index 882cb6a..b50b3cb 100644
--- a/test/DVIPS/DVIPS.py
+++ b/test/DVIPS/DVIPS.py
@@ -25,9 +25,8 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
@@ -109,13 +108,13 @@ test.write('test4.latex', r"""This is a .latex test.
test.run(arguments = '.', stderr = None)
-test.fail_test(test.read('test1.ps') != "This is a .dvi test.\n")
+test.must_match('test1.ps', "This is a .dvi test.\n")
-test.fail_test(test.read('test2.ps') != "This is a .tex test.\n")
+test.must_match('test2.ps', "This is a .tex test.\n")
-test.fail_test(test.read('test3.ps') != "This is a .ltx test.\n")
+test.must_match('test3.ps', "This is a .ltx test.\n")
-test.fail_test(test.read('test4.ps') != "This is a .latex test.\n")
+test.must_match('test4.ps', "This is a .latex test.\n")
@@ -162,9 +161,9 @@ This is the %s LaTeX file.
test.run(arguments = 'foo.dvi', stderr = None)
- test.fail_test(os.path.exists(test.workpath('wrapper.out')))
+ test.must_not_exist(test.workpath('wrapper.out'))
- test.fail_test(not os.path.exists(test.workpath('foo.dvi')))
+ test.must_exist(test.workpath('foo.dvi'))
test.run(arguments = 'bar1.ps bar2.ps bar3.ps', stderr = None)
@@ -173,10 +172,10 @@ dvips -o bar2.ps bar2.dvi
dvips -o bar3.ps bar3.dvi
"""
- test.fail_test(test.read('wrapper.out') != expect)
+ test.must_match('wrapper.out', expect)
- test.fail_test(not os.path.exists(test.workpath('bar1.ps')))
- test.fail_test(not os.path.exists(test.workpath('bar2.ps')))
- test.fail_test(not os.path.exists(test.workpath('bar3.ps')))
+ test.must_exist(test.workpath('bar1.ps'))
+ test.must_exist(test.workpath('bar2.ps'))
+ test.must_exist(test.workpath('bar3.ps'))
test.pass_test()