diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-11-02 13:07:14 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-11-02 13:07:14 (GMT) |
commit | 1048d00a474bce8b56c96f78899b4e572f564ed4 (patch) | |
tree | 9da218150fe4a4f4f1cc3acd00ff84d47b80e9f8 /test/SWIG/live.py | |
parent | 1d667e1bb42f0e3656860eaa4b35a35f357a329a (diff) | |
download | SCons-1048d00a474bce8b56c96f78899b4e572f564ed4.zip SCons-1048d00a474bce8b56c96f78899b4e572f564ed4.tar.gz SCons-1048d00a474bce8b56c96f78899b4e572f564ed4.tar.bz2 |
fix a couple tests broken by binary write in wrapper.py. previously compared against string with native os.linesep
Diffstat (limited to 'test/SWIG/live.py')
-rw-r--r-- | test/SWIG/live.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SWIG/live.py b/test/SWIG/live.py index a64defe..e01597d 100644 --- a/test/SWIG/live.py +++ b/test/SWIG/live.py @@ -145,7 +145,7 @@ test.up_to_date(arguments = ldmodule_prefix+'foo' + _dll) test.run(arguments = ldmodule_prefix+'bar' + _dll) -test.must_match('wrapper.out', "wrapper.py" + os.linesep) +test.must_match('wrapper.out', "wrapper.py\n") test.run(program = python, stdin = """\ from __future__ import print_function |