-
-
Notifications
You must be signed in to change notification settings - Fork 61
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
Interoperability with trybuild #32
Comments
I'm not sure what we can do about this on our side...
Lines 142 to 170 in a04fcab
|
Hmm…that's odd. What does compiletest_rs do differently that it is covered? |
Just coming back to this. I just looked through trybuild's code and see nothing that could conceivably be changed to help this. It (unfortunately) looks like this has to be handled on llvm-cov's end if my understanding is correct. As far as I can tell the bullet points you've listed are correct as they relate to trybuild. |
I just found a way to fix this. |
This will be fixed by #44 and dtolnay/trybuild#121. |
You're a wizard, what can I say. You always find a way to do things, and generally quite quickly at that. |
🚀 thank you, really excited to see this! |
trybuild 1.0.44 yanked due to regression: dtolnay/trybuild#122 |
FYI: 1.0.34 or older versions of trybuild provide similar behavior to 1.0.44, so you can work around this issue by pinning trybuild to those versions for now. trybuild = "=1.0.34" |
54: Support trybuild (take 2) r=taiki-e a=taiki-e Fixes #32 The following patch is needed until dtolnay/trybuild#123 is merged: ```toml [patch.crates-io] trybuild = { git = "https://github.com/taiki-e/trybuild.git", branch = "target" } ``` --- Tested in the same way as #44 (comment) Co-authored-by: Taiki Endo <te316e89@gmail.com>
Currently, the trybuild crate does not contribute anything to the coverage report. I'm not sure whether this should be fixed in cargo-llvm-cov or trybuild. compiletest_rs, on the other hand, does contribute to the coverage report (but is far more finicky).
The text was updated successfully, but these errors were encountered: