19 lines
518 B
Bash
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
|
|
}
|
|
|