added time stamps (#18757)

This commit is contained in:
Ashesh Vidyut 2023-09-12 14:52:31 +05:30 committed by GitHub
parent 62062fd4fd
commit 697836b19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -604,11 +604,13 @@ function suite_teardown {
}
function run_containers {
echo "Starting Containers"
echo "Starting containers"
echo $(date)
echo $@
for name in $@ ; do
echo "Starting container"
echo $name
echo $(date)
run_container $name
done
echo "Done running containers"