diff options
author | Mark Spruiell <mes@zeroc.com> | 2012-04-25 11:19:48 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2012-04-25 11:19:48 -0700 |
commit | 9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc (patch) | |
tree | e0de1a32212fec99274d244632902d2fd635f22f /scripts/TestUtil.py | |
parent | Removed bogus sl/chat/bin directory (diff) | |
download | ice-9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc.tar.bz2 ice-9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc.tar.xz ice-9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc.zip |
misc. python cleanup
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 0878323c931..977d0d5d180 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -392,7 +392,7 @@ def run(tests, root = False): print("SSL is not supported with the Compact Framework") sys.exit(1) if silverlight: - print "SSL is not supported with Silverlight" + print("SSL is not supported with Silverlight") sys.exit(1) if o in ( "--cross", "--protocol", "--host", "--debug", "--compress", "--valgrind", "--serialize", "--ipv6", \ @@ -1241,7 +1241,7 @@ def collocatedTest(additionalOptions = ""): print("** skipping cross test") return if silverlight: - print "** skipping collocated test" + print("** skipping collocated test") return testdir = os.getcwd() @@ -1638,7 +1638,7 @@ def runTests(start, expanded, num = 0, script = False): continue if args.find("silverlight") != -1 and "nosilverlight" in config: - print "%s*** test not supported with Silverlight%s" % (prefix, suffix) + print("%s*** test not supported with Silverlight%s" % (prefix, suffix)) continue if args.find("compact") == -1 and "compact" in config: @@ -1646,7 +1646,7 @@ def runTests(start, expanded, num = 0, script = False): continue if args.find("silverlight") == -1 and "silverlight" in config: - print "%s*** test requires Silverlight%s" % (prefix, suffix) + print("%s*** test requires Silverlight%s" % (prefix, suffix)) continue if isVista() and "novista" in config: |