mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-22 20:45:21 +00:00
5da55f0f2e
`cargo test` runs every test in its own process and by default will collect the output from the test and only print it if the test fails. `--nocapture` instead prints any output from the test immediately and does not collate it - this leads to interleaving. `--nocapture` might be useful for local test debugging but is not something that is helpful, and is instead unhelpful for our CI as a whole. Signed-off-by: Rob Bradford <robert.bradford@intel.com>