diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2013-11-10 19:55:24 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2013-11-10 19:55:24 (GMT) |
commit | 40b0c82446f7acba626424abcd55ecf157d2bdc7 (patch) | |
tree | b13805434b8db4150b113b93921066dc402a63aa /test | |
parent | a8261e0d41be63ca45462fb0f40e8ed1339cc22e (diff) | |
parent | ef9d8a0031b3ca6faabb0746eeb2a7da519fb805 (diff) | |
download | SCons-40b0c82446f7acba626424abcd55ecf157d2bdc7.zip SCons-40b0c82446f7acba626424abcd55ecf157d2bdc7.tar.gz SCons-40b0c82446f7acba626424abcd55ecf157d2bdc7.tar.bz2 |
Merged in dirkbaechle/scons (pull request #91)
Adding EPUB as output format for documentation
Diffstat (limited to 'test')
-rw-r--r-- | test/Ghostscript/GS.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Ghostscript/GS.py b/test/Ghostscript/GS.py index 2cae8b8..daeea09 100644 --- a/test/Ghostscript/GS.py +++ b/test/Ghostscript/GS.py @@ -51,6 +51,7 @@ env = Environment(GS = r'%(_python_)s mygs.py', GSCOM = r'$GS $TARGET $SOURCE', tools=['gs']) env.PDF(target = 'test1.pdf', source = 'test1.ps') +env.Gs(target = 'test2.pdf', source = 'test1.ps') """ % locals()) test.write('test1.ps', r"""This is a .ps test. @@ -60,6 +61,7 @@ test.write('test1.ps', r"""This is a .ps test. test.run(arguments = '.', stderr = None) test.fail_test(test.read('test1.pdf') != "This is a .ps test.\n") +test.fail_test(test.read('test2.pdf') != "This is a .ps test.\n") |