summaryrefslogtreecommitdiffstats
path: root/test/ZIP/ZIPCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ZIP/ZIPCOMSTR.py')
-rw-r--r--test/ZIP/ZIPCOMSTR.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/test/ZIP/ZIPCOMSTR.py b/test/ZIP/ZIPCOMSTR.py
index d91a48d..a26ed49 100644
--- a/test/ZIP/ZIPCOMSTR.py
+++ b/test/ZIP/ZIPCOMSTR.py
@@ -35,17 +35,7 @@ _python_ = TestSCons._python_
test = TestSCons.TestSCons()
-
-
-test.write('myzip.py', """
-import sys
-outfile = open(sys.argv[1], 'wb')
-for f in sys.argv[2:]:
- infile = open(f, 'rb')
- for l in [l for l in infile.readlines() if l != '/*zip*/\\n']:
- outfile.write(l)
-sys.exit(0)
-""")
+test.dir_fixture('ZIPCOMSTR-fixture')
test.write('SConstruct', """
env = Environment(tools=['zip'],
@@ -54,16 +44,12 @@ env = Environment(tools=['zip'],
env.Zip('aaa.zip', 'aaa.in')
""" % locals())
-test.write('aaa.in', "aaa.in\n/*zip*/\n")
-
test.run(stdout = test.wrap_stdout("""\
Zipping aaa.zip from aaa.in
"""))
test.must_match('aaa.zip', "aaa.in\n")
-
-
test.pass_test()
# Local Variables: