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
{{ message }}
This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
When I'm doing cargo test, I get the following error output (excerpt):
---- src/assert.rs - assert::Assert::fails_with (line 238) stdout ----
thread 'rustc' panicked at 'test executable failed:
thread 'main' panicked at 'Error: CLI assertion failed: `cat non-existing-file` StdErr mismatch: diff:
-cat: non-existing-file: No such file or directory
+cat: non-existing-file: Datei oder Verzeichnis nicht gefunden
', src/assert.rs:406:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.
', librustdoc/test.rs:324:17
note: Run with `RUST_BACKTRACE=1` for a backtrace.
---- src/assert.rs - assert::Assert::ignore_status (line 260) stdout ----
thread 'rustc' panicked at 'test executable failed:
thread 'main' panicked at 'Error: CLI assertion failed: `cat non-existing-file` StdErr mismatch: diff:
-cat: non-existing-file: No such file or directory
+cat: non-existing-file: Datei oder Verzeichnis nicht gefunden
', src/assert.rs:406:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.
', librustdoc/test.rs:324:17
---- src/assert.rs - assert::Assert::stderr (line 300) stdout ----
thread 'rustc' panicked at 'test executable failed:
thread 'main' panicked at 'Error: CLI assertion failed: `cat non-existing-file` StdErr mismatch: diff:
-cat: non-existing-file: No such file or directory
+cat: non-existing-file: Datei oder Verzeichnis nicht gefunden
', src/assert.rs:406:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.
', librustdoc/test.rs:324:17
failures:
src/assert.rs - assert::Assert::fails_with (line 238)
src/assert.rs - assert::Assert::ignore_status (line 260)
src/assert.rs - assert::Assert::stderr (line 300)
test result: FAILED. 24 passed; 3 failed; 0 ignored; 0 measured; 0 filtered out
error: test failed, to rerun pass '--doc'
As you might see I have a default german locale. It would be nice if cargo test would work smoothly here, e.g. by removing all env vars and then setting LANG=en_US.UTF-8 or something.
The text was updated successfully, but these errors were encountered:
When I'm doing cargo test, I get the following error output (excerpt):
As you might see I have a default german locale. It would be nice if
cargo test
would work smoothly here, e.g. by removing all env vars and then settingLANG=en_US.UTF-8
or something.The text was updated successfully, but these errors were encountered: