Print passed and failed plugins at the end
This commit make passed and failed plugins be printed at the end of the
tempest-plugin-sanity execution. This is useful to ensure what plugins
were tested.
Change-Id: Iffd9ff6afd71c1d61322e5202b9861ec218cb574
diff --git a/tools/tempest-plugin-sanity.sh b/tools/tempest-plugin-sanity.sh
index b291fcc..47a9ac9 100644
--- a/tools/tempest-plugin-sanity.sh
+++ b/tools/tempest-plugin-sanity.sh
@@ -151,8 +151,10 @@
fi
done
+echo "Passed Plugins: $passed_plugin"
+echo "Failed Plugins: $failed_plugin"
+
# Check for failed status
if [[ -n $failed_plugin ]]; then
- echo "Failed Plugins: $failed_plugin"
exit 1
fi