summaryrefslogtreecommitdiffstats
path: root/tests/ci/yardstick-verify
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2016-12-22 02:52:16 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-22 02:52:16 +0000
commitad37cb3cc16f8979caf7dc836e4fda8fe7955d5c (patch)
tree8762e28fe38485c561f2e93a1472401392eff220 /tests/ci/yardstick-verify
parent675954a9f2b15bc945f274cd6c60a530642b247e (diff)
parent303361e1c69d5743ba621d37db1515297597f666 (diff)
Merge "Replace heat, keystone and nova command with openstack command"
Diffstat (limited to 'tests/ci/yardstick-verify')
-rwxr-xr-xtests/ci/yardstick-verify6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify
index 7644c96c4..46b32cc2c 100755
--- a/tests/ci/yardstick-verify
+++ b/tests/ci/yardstick-verify
@@ -301,8 +301,8 @@ main()
# check OpenStack services
echo "Checking OpenStack services:"
- for cmd in "glance image-list" "nova list" "heat stack-list"; do
- echo " checking ${cmd/%\ */} ..."
+ for cmd in "openstack image list" "openstack server list" "openstack stack list"; do
+ echo " checking ${cmd} ..."
if ! $cmd >/dev/null; then
echo "error: command \"$cmd\" failed"
exit 1
@@ -311,7 +311,7 @@ main()
echo
echo "Checking for External network:"
- for net in $(neutron net-list --router:external True -c name -f value); do
+ for net in $(openstack network list --external -c Name -f value); do
echo " external network: $net"
done