diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-03-20 23:57:34 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-03-20 23:57:34 (GMT) |
commit | 871e8747323c362ddbe01dc03323f775430c944a (patch) | |
tree | 5d7df1376371a2671c13ef1fb64ecee5a04863a4 /test/textfile.py | |
parent | 43464c5aafe4cbeb950dfda6c7ec33d472a6149a (diff) | |
download | SCons-871e8747323c362ddbe01dc03323f775430c944a.zip SCons-871e8747323c362ddbe01dc03323f775430c944a.tar.gz SCons-871e8747323c362ddbe01dc03323f775430c944a.tar.bz2 |
py3. Fix vendor specific compilers importing c++ module, instead of cxx. c++ is no longer legal module name in py3
Diffstat (limited to 'test/textfile.py')
-rw-r--r-- | test/textfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/textfile.py b/test/textfile.py index 3d336c6..f82f50a 100644 --- a/test/textfile.py +++ b/test/textfile.py @@ -152,6 +152,6 @@ matchem('sub4', [line1, line2a, line3b]) matchem('sub5', [line1, line2b, line3b]) matchem('sub6', [line1, line2b, line3b]) -test.up_to_date(arguments = '. --debug=explain') +test.up_to_date(arguments = '.') test.pass_test() |