6wind-virtual-accelerator-plugin: update built-in tests for Fuel 9

Signed-off-by: Francesco Santoro <francesco.santoro@6wind.com>

Change-Id: Ic1841fdadef123423fbdebf21735b167e7c1dcbf
This commit is contained in:
Francesco Santoro 2016-09-05 16:11:23 +02:00
parent 26aeb3be1f
commit 9b7c313919
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ source openrc
#Required to be able to install iperf package since Cirros image does not provide it
curl https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img -o $UBUNTU_IMAGE
glance image-create --name $IMAGE_NAME --file $UBUNTU_IMAGE --disk-format qcow2 --container-format bare --visibility public --progress
openstack image create $IMAGE_NAME --file $UBUNTU_IMAGE --disk-format qcow2 --container-format bare --public
nova flavor-create m1.vm_hugepages auto 512 3 1
nova flavor-key m1.vm_hugepages set hw:mem_page_size=large

View File

@ -11,7 +11,7 @@ while [ $(nova list | grep test_vm | grep BUILD | wc -l) -eq 1 ]; do
sleep 1;
done
STATUS=$(nova show test_vm | grep status | awk '{print $4}')
STATUS=$(nova list | grep test_vm | awk '{print $6}')
if [[ ${STATUS} == "ACTIVE" ]]; then
echo "Wait 2 minutes to make sure that vm cloud-init has finished"