-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the "dune coq top" bug identified by #5552 #5868
Conversation
88b605e
to
4a7bb48
Compare
| Some s -> s | ||
if Filename.is_relative coq_file_arg then coq_file_arg | ||
else | ||
let cwd = Path.external_ Path.External.initial_cwd in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
side note: maybe you should just reject absolute paths? we don't allow dune build /foo/bar
as far as I know. Why allow it here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I know that's a bit silly. The reason I did that originally is that emacs/proof-general feeds coqtop
with an absolute path. But I'm not sure how important that is that we support that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also remove that @Alizter? I agree this is kind of useless anyway: editors will need to detect the workspace root anyway, so they can cook up a path relative to it.
Could you also add a test of the form:
All dune commands work when you run them in sub-directories, so this should be no exception. |
I added a test case, but this currently fails. I'm not sure what is the right way to fix things here. I should certainly reuse stuff from the In particular, I'm not sure where the translation of paths should happen. It seem that all operations are expected to work with paths relative to the root, is that right? If yes, how do you typically construct such paths for a relative path to the current working directory? |
You're on the right track. In particular, see the
Where |
This was reported in ocaml#5552. Co-authored-by: Emilio Jesus Gallego Arias <e+git@x80.org> Signed-off-by: Rodolphe Lepigre <lepigre@mpi-sws.org>
The [dune coq top] command fails when called from a subdirectory of the workspace. Signed-off-by: Rodolphe Lepigre <lepigre@mpi-sws.org>
Thanks @rgrinberg! Unfortunately I don't quite understand how that helps. I think that what I need instead is a way to compute the relative path from the root (which seems to be the current working directory after initialisation, as returned by In the (failing) test, when I run the last command from the I could probably hack a fix by extracting the path I want somehow, but that would almost surely not be the correct approach. Could you elaborate a bit on what you think is the right way to fix the problem? |
LGTM @rlepigre I think DCO is complaining because you are not the author of the first commit? Otherwise I don't know why it doesn't like your sign off. Once that is sorted @rgrinberg this is good to merge. |
I see that the extra test wasn't added, let me try to do that. |
I added the test, but it currently fails (the message in the test is wrong): see |
@rlepigre Could you push the broken test so I can take a look at it? |
If you know a way to fix it @Alizter, feel free to implement it. Otherwise I can have a go if you tell me how to. |
It is pushed, it is the second commit. |
OK so @rgrinberg thinks that @rlepigre could you drop the second test, the fix for that will have to come later. |
Why should the fix come later? Resolving the argument with |
Yes that's right, I will push my change. |
@rlepigre I don't have permission to push to you branch. |
You should have received an invite. |
@rlepigre There is a checkbox in the bottom right hand side of this page which should give permission for pushing to this specific branch. I don't need full access to your repo. :-) |
It was checked already, I guess you do not qualify as a "maintainer" @Alizter? 😛 |
See #5552.