diff options
author | Daniel Moody <dmoody256@gmail.com> | 2018-05-25 20:20:02 (GMT) |
---|---|---|
committer | Daniel Moody <dmoody256@gmail.com> | 2018-05-25 20:20:02 (GMT) |
commit | 0f83c3918a0acf84588902c6c3d3f28e764edb56 (patch) | |
tree | 664289a6f830c5fce85856e7cd288b15e2b2e841 /test/SWIG/recursive-includes-cpp.py | |
parent | 091de85561b5f4228f4f91c34b027823a54a6942 (diff) | |
download | SCons-0f83c3918a0acf84588902c6c3d3f28e764edb56.zip SCons-0f83c3918a0acf84588902c6c3d3f28e764edb56.tar.gz SCons-0f83c3918a0acf84588902c6c3d3f28e764edb56.tar.bz2 |
pr-3052: removed debug print statements
Diffstat (limited to 'test/SWIG/recursive-includes-cpp.py')
-rw-r--r-- | test/SWIG/recursive-includes-cpp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SWIG/recursive-includes-cpp.py b/test/SWIG/recursive-includes-cpp.py index 2f2cff2..2494c45 100644 --- a/test/SWIG/recursive-includes-cpp.py +++ b/test/SWIG/recursive-includes-cpp.py @@ -126,14 +126,14 @@ expectMod = """\ # Validate that the recursive dependencies are found with SWIG scanning first. test.run( arguments = '--tree=all mod_wrap'+object_suffix +' main'+object_suffix) -print(test.stdout()) + test.must_contain_all( test.stdout(), expectMain ) test.must_contain_all( test.stdout(), expectMod ) # Validate that the recursive dependencies are found consistently. test.run( arguments = '--tree=all main'+object_suffix +' mod_wrap'+object_suffix) -print(test.stdout()) + test.must_contain_all( test.stdout(), expectMain ) test.must_contain_all( test.stdout(), expectMod ) |