You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that the probe sometimes gets an EPIPE when writing input to the child process. In this particular test scenario, the dummy /bin/true wrapper may exit too quickly, closing its stdin before we had a chance to write anything (which it wasn't going to look at anyway).
I don't think it's wrong for the library to consider that a failed probe, but I'd like to make the test more robust.
The text was updated successfully, but these errors were encountered:
* New-type the possibly-wrapped `rustc` commands.
* Use wrappers when reading the version -- fixes#58.
* Test with a wrapper script that reads input -- fixes#61.
* New-type the possibly-wrapped `rustc` commands.
* Use wrappers when reading the version -- fixes#58.
* Test with a wrapper script that reads input -- fixes#61.
This assertion occasionally fails:
autocfg/tests/wrappers.rs
Lines 45 to 50 in c10bc17
I found that the probe sometimes gets an
EPIPE
when writing input to the child process. In this particular test scenario, the dummy/bin/true
wrapper may exit too quickly, closing itsstdin
before we had a chance to write anything (which it wasn't going to look at anyway).I don't think it's wrong for the library to consider that a failed probe, but I'd like to make the test more robust.
The text was updated successfully, but these errors were encountered: