summaryrefslogtreecommitdiff
path: root/test/DVIPDF
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-10-08 00:58:12 +0000
committerSteven Knight <knight@baldmt.com>2008-10-08 00:58:12 +0000
commit7b5b6bbc0f83eb8e22e7a9325944bf0680c847ed (patch)
tree803afe9991218fcde7c656d868a4d1c198ba8bd3 /test/DVIPDF
parent74dada7aff0f470de7f5cb2ddf4a78550a60da62 (diff)
downloadscons-7b5b6bbc0f83eb8e22e7a9325944bf0680c847ed.tar.gz
Update test scripts with more information must_*() methods.
Diffstat (limited to 'test/DVIPDF')
-rw-r--r--test/DVIPDF/DVIPDF.py19
-rw-r--r--test/DVIPDF/DVIPDFFLAGS.py19
2 files changed, 18 insertions, 20 deletions
diff --git a/test/DVIPDF/DVIPDF.py b/test/DVIPDF/DVIPDF.py
index 6f62f34a..43bb1063 100644
--- a/test/DVIPDF/DVIPDF.py
+++ b/test/DVIPDF/DVIPDF.py
@@ -25,9 +25,8 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
@@ -100,9 +99,9 @@ test.write('test2.tex', r"""This is a .tex test.
test.run(arguments = '.', stderr = None)
-test.fail_test(test.read('test1.pdf') != "This is a .dvi test.\n")
+test.must_match('test1.pdf', "This is a .dvi test.\n")
-test.fail_test(test.read('test2.pdf') != "This is a .tex test.\n")
+test.must_match('test2.pdf', "This is a .tex test.\n")
@@ -145,20 +144,20 @@ This is the %s TeX file.
test.run(arguments = 'foo.pdf', 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.pdf')))
+ test.must_exist(test.workpath('foo.pdf'))
test.run(arguments = 'xxx.pdf', stderr = None)
- test.fail_test(os.path.exists(test.workpath('wrapper.out')))
+ test.must_not_exist(test.workpath('wrapper.out'))
- test.fail_test(os.path.exists(test.workpath('xxx.dvi')))
+ test.must_not_exist(test.workpath('xxx.dvi'))
test.run(arguments = 'bar.pdf', stderr = None)
- test.fail_test(test.read('wrapper.out') != "dvipdf bar.dvi bar.pdf\n")
+ test.must_match('wrapper.out', "dvipdf bar.dvi bar.pdf\n")
- test.fail_test(not os.path.exists(test.workpath('bar.pdf')))
+ test.must_exist(test.workpath('bar.pdf'))
test.pass_test()
diff --git a/test/DVIPDF/DVIPDFFLAGS.py b/test/DVIPDF/DVIPDFFLAGS.py
index cc901052..8d94b5af 100644
--- a/test/DVIPDF/DVIPDFFLAGS.py
+++ b/test/DVIPDF/DVIPDFFLAGS.py
@@ -25,9 +25,8 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
@@ -104,9 +103,9 @@ test.write('test2.tex', r"""This is a .tex test.
test.run(arguments = '.', stderr = None)
-test.fail_test(test.read('test1.pdf') != " -x\nThis is a .dvi test.\n")
+test.must_match('test1.pdf', " -x\nThis is a .dvi test.\n")
-test.fail_test(test.read('test2.pdf') != " -x\nThis is a .tex test.\n")
+test.must_match('test2.pdf', " -x\nThis is a .tex test.\n")
@@ -156,20 +155,20 @@ This is the %s LaTeX file.
test.run(arguments = 'foo.pdf', 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.pdf')))
+ test.must_exist(test.workpath('foo.pdf'))
test.run(arguments = 'xxx.pdf', stderr = None)
- test.fail_test(os.path.exists(test.workpath('wrapper.out')))
+ test.must_not_exist(test.workpath('wrapper.out'))
- test.fail_test(os.path.exists(test.workpath('xxx.dvi')))
+ test.must_not_exist(test.workpath('xxx.dvi'))
test.run(arguments = 'bar.pdf', stderr = None)
- test.fail_test(test.read('wrapper.out') != "dvipdf bar.dvi bar.pdf\n")
+ test.must_match('wrapper.out', "dvipdf bar.dvi bar.pdf\n")
- test.fail_test(not os.path.exists(test.workpath('bar.pdf')))
+ test.must_exist(test.workpath('bar.pdf'))
test.pass_test()