cloud-hypervisor/Cargo.toml
Rob Bradford 1f53488003 tests: Switch to launching by command
Launch the test binary by command rather than using using the vmm layer.
This makes it easier to manage the running VM as you can explicitly kill
it.

Also switch to using credibility for the tests which catches assertions
and continues with subsequent commands and reports the issues at the
end. This means it is possible to cleanup even on failed test runs.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
2019-06-06 11:03:13 +01:00

21 lines
352 B
TOML

[package]
name = "cloud-hypervisor"
version = "0.1.0"
authors = ["The Cloud Hypervisor Authors"]
edition = "2018"
[dependencies]
clap = "=2.27.1"
vmm = { path = "vmm" }
[dev-dependencies]
ssh2 = "=0.3.3"
dirs = "2.0.0"
credibility = "0.1.3"
[features]
default = []
# Integration tests require a special environment to run in
integration_tests = []