Alex Burka
Alex Burka
I am getting the same error trying to use mavftp with Ardupilot 4.4.4.
FWIW, I believe it's because the path length is wrong. MAVSDK is adding 1 for the null terminator but AP seems not to want that.
Disabling colored output requires convoluted `cargo test --color=never -- --color=never` incantation
On cargo 0.5.0 2015-09-04 (the one distributed with current nightly), the correct incantation seems to be ``` cargo test --color=never -- --color=never ``` Perhaps `cargo test` should automatically forward the...
Disabling colored output requires convoluted `cargo test --color=never -- --color=never` incantation
There is already `RUST_TEST_THREADS`, so following the pattern would be `RUST_TEST_COLOR`, I suppose?
Disabling colored output requires convoluted `cargo test --color=never -- --color=never` incantation
@alexcrichton though... were you thinking this env var would disable color in other Cargo modes, as well? Like building and doc-ing?
Disabling colored output requires convoluted `cargo test --color=never -- --color=never` incantation
The way I see it, there are two orthogonal-ish questions: - Will the environment variable affect color just for testing or across all of the tooling (is rustc going to...