D11079: sigpipe-remote: display more information about the non-py3 python

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Sun Jul 11 21:37:32 UTC 2021


marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.

REVISION SUMMARY
  If we are running the wrong things, it is useful to know which wrong thing we
  are running.

REPOSITORY
  rHG Mercurial

BRANCH
  default

REVISION DETAIL
  https://phab.mercurial-scm.org/D11079

AFFECTED FILES
  tests/testlib/sigpipe-remote.py

CHANGE DETAILS

diff --git a/tests/testlib/sigpipe-remote.py b/tests/testlib/sigpipe-remote.py
--- a/tests/testlib/sigpipe-remote.py
+++ b/tests/testlib/sigpipe-remote.py
@@ -10,7 +10,10 @@
 # we cannot use mercurial.testing as long as python2 is not dropped as the test
 # will only install the mercurial module for python2 in python2 run
 if sys.version_info[0] < 3:
+    ver = '.'.join(str(x) for x in sys.version_info)
+    exe = sys.executable
     print('SIGPIPE-HELPER: script should run with Python 3', file=sys.stderr)
+    print('SIGPIPE-HELPER:   %s is running %s' % (exe, ver), file=sys.stderr)
     sys.exit(255)
 
 



To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel


More information about the Mercurial-devel mailing list