mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 13:45:20 +00:00
scripts: Fix integration tests script
Running the integration test script showed the following error: + '[' '!' -f /home/rob/workloads/virtiofsd scripts/run_integration_tests.sh: line 84: [: missing `]' + -f /home/rob/workloads/vubridge ']' scripts/run_integration_tests.sh: line 84: -f: command not found This was preventing the test from reusing build QEMU artifacts. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
1f06c5907f
commit
fe9398fe87
@ -81,7 +81,7 @@ fi
|
||||
VIRTIOFSD="$WORKLOADS_DIR/virtiofsd"
|
||||
VUBRIDGE="$WORKLOADS_DIR/vubridge"
|
||||
QEMU_DIR="qemu_build"
|
||||
if [ ! -f "$VIRTIOFSD" || ! -f "$VUBRIDGE" ]; then
|
||||
if [ ! -f "$VIRTIOFSD" ] || [ ! -f "$VUBRIDGE" ]; then
|
||||
pushd $WORKLOADS_DIR
|
||||
git clone --depth 1 "https://github.com/sboeuf/qemu.git" -b "virtio-fs" $QEMU_DIR
|
||||
pushd $QEMU_DIR
|
||||
|
Loading…
Reference in New Issue
Block a user