diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-08-07 15:40:53 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-08-07 15:40:53 -0400 |
commit | 987b12acd6ecad876d81ae251ff56042247acbc0 (patch) | |
tree | be7d76b5356507eb137a10a9ec1abfc6741142e5 /scripts/TestUtil.py | |
parent | fixing slice2java bugs (diff) | |
download | ice-987b12acd6ecad876d81ae251ff56042247acbc0.tar.bz2 ice-987b12acd6ecad876d81ae251ff56042247acbc0.tar.xz ice-987b12acd6ecad876d81ae251ff56042247acbc0.zip |
VS2012 build fixes
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index b5082289ead..4153ba28205 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1690,11 +1690,11 @@ def runTests(start, expanded, num = 0, script = False): continue if isMINGW() and "nomingw" in config: - print "%s*** test not supported with MINGW%s" % (prefix, suffix) + print("%s*** test not supported with MINGW%s" % (prefix, suffix)) continue if isWin32() and "nowin32" in config: - print "%s*** test not supported with MINGW%s" % (prefix, suffix) + print("%s*** test not supported with MINGW%s" % (prefix, suffix)) continue # If this is mono and we're running ssl protocol tests |