apparmor.d/tests/integration/utils/hwclock.bats
2025-03-28 23:31:05 +01:00

19 lines
518 B
Bash

#!/usr/bin/env bats
# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only
load ../common
@test "hwclock: Display the current time as reported by the hardware clock" {
hwclock
}
@test "hwclock: Write the current software clock time to the hardware clock (sometimes used during system setup)" {
hwclock --systohc
}
@test "hwclock: Write the current hardware clock time to the software clock" {
hwclock --hctosys
}