reftest engine tweaks for Windows #5723
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On Windows, when run in GitHub Actions, the
opam env
in reftests is using ash
as the default shell (so we getENV='value'; export ENV
format). When run locally, I getcmd
as the default shell, which causes conflicts as we getset ENV=value
notation instead.I had a deeper dive into this as part of looking at #5636 and #5714. Process hierarchy is a slightly strange thing on Windows - it's already the case that the ancestry returned gets "chopped" (process groups, etc. can do this). The ancestry being returned is not incorrect, or at least it is consistent - tools such as Process Explorer see the same thing.
For whatever reason, the GitHub Actions get Cygwin's
sh.exe
as one of the ancestor processes. Locally, it'smake.exe
for me 🤷 I'm not totally sure why, but it doesn't particularly matter - the ancestry detection is correct when run from cmd or powershell, which is when it's needed. When native opam is run from a Cygwin shell,SHELL
is set, and opam uses that.So the only issue is the reftests, which don't propagate the
SHELL
environment variable. The first commit here rather than propagating it, simply sets it. We might consider doing this for Unix as well - I'm not sure whether runningmake tests
fromfish
has the same problem. I think this could also be done withOPAMSHELL
, but given that we weren't propagating theSHELL
variable before, I don't think an issue with just setting it instead.Also while looking at things for #5636, it's quite easy now to end up with the opam root or the temporary directory being translated to Cygwin notation which doesn't then get caught by the regex for conversion to
BASEDIR
orOPAMTMP
. I've factored out the code which was doing the previous forward/backslash manipulation and exposedOpamSystem.apply_cygpath
so now those directories are captured with backslashes, forward-slashes or in Cygwin notation.