Create local rust crate and update config path

In order to be able to run the CI on rust-vmm-ci we needed to
make it a rust crate. Also the path to the coverage config
file needed to be updated in test_coverage.py so that the path
does not depend on the crate; a breadth-first search was used
to guarantee that the config file belongs to the crate that is
being tested.

Signed-off-by: Catalin Dumitru <catdum@amazon.com>
This commit is contained in:
Catalin Dumitru
2021-07-29 16:01:18 +03:00
committed by Laura Loghin
parent 7693628035
commit 0b9d283cff
4 changed files with 35 additions and 4 deletions
+3
View File
@@ -0,0 +1,3 @@
pub fn main() {
println!("It works!");
}