summaryrefslogtreecommitdiff
path: root/QMTest
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 04:09:11 -0800
committerCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 04:09:11 -0800
commit475e92e165faa762de60bcf64c96ecab7417dd50 (patch)
tree079546afb1d6be21831851837d10f4af1d738018 /QMTest
parente45ba445a1140cfa4d7836f54f2e6b8d9a5c7325 (diff)
downloadscons-475e92e165faa762de60bcf64c96ecab7417dd50.tar.gz
Use print() function. Fixes py2/3
Diffstat (limited to 'QMTest')
-rw-r--r--QMTest/TestCommonTests.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/QMTest/TestCommonTests.py b/QMTest/TestCommonTests.py
index 30b7d6a3..7949cb84 100644
--- a/QMTest/TestCommonTests.py
+++ b/QMTest/TestCommonTests.py
@@ -168,10 +168,11 @@ class __init__TestCase(TestCommonTestCase):
os.chdir(run_env.workdir)
script = lstrip("""\
+ from __future__ import print_function
from TestCommon import TestCommon
tc = TestCommon(workdir='')
import os
- print os.getcwd()
+ print(os.getcwd())
""")
run_env.run(program=sys.executable, stdin=script)
stdout = run_env.stdout()[:-1]
@@ -2285,14 +2286,16 @@ class variables_TestCase(TestCommonTestCase):
'dll_suffix',
]
- script = "import TestCommon\n" + \
- '\n'.join([ "print TestCommon.%s\n" % v for v in variables ])
+ script = "from __future__ import print_function" + \
+ "import TestCommon\n" + \
+ '\n'.join([ "print(TestCommon.%s)\n" % v for v in variables ])
run_env.run(program=sys.executable, stdin=script)
stderr = run_env.stderr()
assert stderr == "", stderr
- script = "from TestCommon import *\n" + \
- '\n'.join([ "print %s" % v for v in variables ])
+ script = "from __future__ import print_function" + \
+ "from TestCommon import *\n" + \
+ '\n'.join([ "print(%s)" % v for v in variables ])
run_env.run(program=sys.executable, stdin=script)
stderr = run_env.stderr()
assert stderr == "", stderr