From 218805a20d262c472464321797aa05bb1df3b120 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 20 Jul 2018 16:50:06 -0700 Subject: [PATCH] Use detail listing in integration testing This helps confirm that all fields are populated properly when reviewing changes. Change-Id: Ieb4876bcbf01c03189dd176239e2644256b5306e --- tools/check_devstack_plugin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/check_devstack_plugin.sh b/tools/check_devstack_plugin.sh index 14a97b76d..8f16db5a4 100755 --- a/tools/check_devstack_plugin.sh +++ b/tools/check_devstack_plugin.sh @@ -59,7 +59,7 @@ function waitforimage { while ! $NODEPOOL image-list | grep $name | grep $state; do $NODEPOOL image-list > ${LOGDIR}/nodepool-image-list.txt - $NODEPOOL list > ${LOGDIR}/nodepool-list.txt + $NODEPOOL list --detail > ${LOGDIR}/nodepool-list.txt builds=$(ls -l /var/log/nodepool/builds/ | grep $name | wc -l) if [[ ${builds} -ge 4 ]]; then @@ -76,7 +76,7 @@ function waitfornode { while ! $NODEPOOL list | grep $name | grep $state | grep "unlocked"; do $NODEPOOL image-list > ${LOGDIR}/nodepool-image-list.txt - $NODEPOOL list > ${LOGDIR}/nodepool-list.txt + $NODEPOOL list --detail > ${LOGDIR}/nodepool-list.txt sleep 10 done }