summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/rust_test_format_support.md
AgeCommit message (Collapse)Author
2021-02-14Set up release 0.57.Jussi Pakkanen
2021-01-31copy editing for 0.57 release notes [skip ci]Paolo Bonzini
2021-01-05mtest: Add support for rust unit testsDylan Baker
Rust has it's own built in unit test format, which is invoked by compiling a rust executable with the `--test` flag to rustc. The tests are then run by simply invoking that binary. They output a custom test format, which this patch adds parsing support for. This means that we can report each subtest in the junit we generate correctly, which should be helpful for orchestration systems like gitlab and jenkins which can parse junit XML.