Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: ensure chrony syncs time before tests #14888

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/lib/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,13 @@ prepare_classic() {
mkdir -p /etc/dbus-1/system.d
systemctl reload dbus.service
fi

# on Xenial chrony wasn't always running which means there was no NTP sync
# which breaks auto-refresh tests (we wait for a sync before auto-refreshing)
if systemctl status chrony &>/dev/null && ! timeout 15s chronyc waitsync; then
systemctl restart chrony
timeout 3m chronyc waitsync
fi
}

ensure_snapcraft() {
Expand Down
Loading