Use detail listing in integration testing

This helps confirm that all fields are populated properly when reviewing
changes.

Change-Id: Ieb4876bcbf01c03189dd176239e2644256b5306e
This commit is contained in:
Clark Boylan 2018-07-20 16:50:06 -07:00
parent 5745c807c9
commit 218805a20d
1 changed files with 2 additions and 2 deletions

View File

@ -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
}