[PATCH 2 of 5 RFC py3 support] run-tests: if run by python3, execute setup.py with --c2to3

Augie Fackler raf at durin42.com
Thu Sep 19 15:08:11 CDT 2013


# HG changeset patch
# User Augie Fackler <raf at durin42.com>
# Date 1379618944 14400
#      Thu Sep 19 15:29:04 2013 -0400
# Node ID 34cc5cc44a9fabc463b52834b0a667f27bb156aa
# Parent  bc6ff6482c1da65bf9286c82a0b3ebcafc80f09b
run-tests: if run by python3, execute setup.py with --c2to3

diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -460,6 +460,9 @@
     if options.compiler:
         compiler = '--compiler ' + options.compiler
     pure = options.pure and "--pure" or ""
+    py3 = ''
+    if sys.version_info[0] == 3:
+        py3 = '--c2to3'
 
     # Run installer in hg root
     script = os.path.realpath(sys.argv[0])
@@ -472,11 +475,11 @@
         # least on Windows for now, deal with .pydistutils.cfg bugs
         # when they happen.
         nohome = ''
-    cmd = ('%(exe)s setup.py %(pure)s clean --all'
+    cmd = ('%(exe)s setup.py %(py3)s %(pure)s clean --all'
            ' build %(compiler)s --build-base="%(base)s"'
            ' install --force --prefix="%(prefix)s" --install-lib="%(libdir)s"'
            ' --install-scripts="%(bindir)s" %(nohome)s >%(logfile)s 2>&1'
-           % dict(exe=sys.executable, pure=pure, compiler=compiler,
+           % dict(exe=sys.executable, py3=py3, pure=pure, compiler=compiler,
                   base=os.path.join(HGTMP, "build"),
                   prefix=INST, libdir=PYTHONDIR, bindir=BINDIR,
                   nohome=nohome, logfile=installerrs))


More information about the Mercurial-devel mailing list