blob: fbced9bfd76976a1192729f6be8555a7e045b929 [file] [log] [blame]
#!/bin/bash
# Go through all hosts known to the database for cautotest or
# cautotest-cq. Find all hosts with a corresponding servo host.
# Run servo-stat for each of those hosts.
#
# Output from servo-stat goes to stdout. Starting and ending
# timestamps are recorded on stderr.
cd $(dirname $0)
date >&2
for MASTER in cautotest cautotest-cq
do
../cli/atest host list -w $MASTER
done | awk '$0 !~ /^Host / {print $1}' | sort |
./haveservo | xargs -l1 ./servo-stat
date >&2