mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 13:45:20 +00:00
1f53488003
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>
21 lines
352 B
TOML
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 = []
|