summaryrefslogtreecommitdiffstats
path: root/test/AR/ARCOM.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-10-03 06:08:04 (GMT)
committerWilliam Blevins <wblevins001@gmail.com>2016-10-03 06:08:04 (GMT)
commit5587089a661a520a32c353ea886939cd63a0636a (patch)
tree22bf17e710505ff6f6bcf5cc4aa7badfc958d5f2 /test/AR/ARCOM.py
parent6dd3fd8b838d18d65edd6e7adabf3a363437f8a9 (diff)
downloadSCons-5587089a661a520a32c353ea886939cd63a0636a.zip
SCons-5587089a661a520a32c353ea886939cd63a0636a.tar.gz
SCons-5587089a661a520a32c353ea886939cd63a0636a.tar.bz2
Moved common my<xxx>.py functions to global fixture and resolve byte/str.
Diffstat (limited to 'test/AR/ARCOM.py')
-rw-r--r--test/AR/ARCOM.py26
1 files changed, 6 insertions, 20 deletions
diff --git a/test/AR/ARCOM.py b/test/AR/ARCOM.py
index bf2830e..f9d0038 100644
--- a/test/AR/ARCOM.py
+++ b/test/AR/ARCOM.py
@@ -34,39 +34,25 @@ _python_ = TestSCons._python_
test = TestSCons.TestSCons()
-
-
-test.write('myar.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 != b'/*ar*/\\n']:
- outfile.write(l)
-sys.exit(0)
-""")
-
-test.write('myranlib.py', """
-""")
+test.file_fixture('mycompile.py')
+test.file_fixture('myrewrite.py')
test.write('SConstruct', """
env = Environment(tools=['default', 'ar'],
- ARCOM = r'%(_python_)s myar.py $TARGET $SOURCES',
- RANLIBCOM = r'%(_python_)s myranlib.py $TARGET',
+ ARCOM = r'%(_python_)s mycompile.py ar $TARGET $SOURCES',
+ RANLIBCOM = r'%(_python_)s myrewrite.py ranlib $TARGET',
LIBPREFIX = '',
LIBSUFFIX = '.lib')
env.Library(target = 'output', source = ['file.1', 'file.2'])
""" % locals())
-test.write('file.1', "file.1\n/*ar*/\n")
-test.write('file.2', "file.2\n/*ar*/\n")
+test.write('file.1', "file.1\n/*ar*/\n/*ranlib*/\n")
+test.write('file.2', "file.2\n/*ar*/\n/*ranlib*/\n")
test.run(arguments = '.')
test.must_match('output.lib', "file.1\nfile.2\n")
-
-
test.pass_test()
# Local Variables: