mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
134bcd84e6
Make all the crates members of the workspace so that "cargo test --workspace" will find them all and test them with the features enabled that we use. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
15 lines
302 B
Bash
Executable File
15 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source $HOME/.cargo/env
|
|
|
|
cargo test --workspace --no-run
|
|
pushd target/debug
|
|
ls | grep net_util | grep -v "\.d" | xargs -n 1 sudo setcap cap_net_admin,cap_net_raw+ep
|
|
popd
|
|
|
|
sudo adduser $USER kvm
|
|
newgrp kvm << EOF || exit 1
|
|
export RUST_BACKTRACE=1
|
|
cargo test --workspace || exit 1;
|
|
EOF
|