Skip to content
Snippets Groups Projects
Commit e7a4c018b563 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

tests: use python from environment in test-parseindex2.py

Without this, the test starts failing with D9273 (the change to
`pyexename` to be specific).

Differential Revision: https://phab.mercurial-scm.org/D9286
parent e0dbfbd4062c
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
from __future__ import absolute_import, print_function
import os
import struct
import subprocess
import sys
......@@ -129,7 +130,7 @@
"import sys; sys.hexversion=%s; "
"import mercurial.cext.parsers" % hexversion
)
cmd = "python -c \"%s\"" % code
cmd = "\"%s\" -c \"%s\"" % (os.environ['PYTHON'], code)
# We need to do these tests inside a subprocess because parser.c's
# version-checking code happens inside the module init function, and
# when using reload() to reimport an extension module, "The init function
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment