-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,30 @@ | ||
#!/usr/bin/env bats | ||
# apparmor.d - Full set of apparmor profiles | ||
# Copyright (C) 2024 Alexandre Pujol <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
load common | ||
|
||
@test "dmesg: Show kernel messages" { | ||
sudo dmesg | ||
} | ||
|
||
@test "dmesg: Show kernel error messages" { | ||
sudo dmesg --level err | ||
} | ||
|
||
@test "dmesg: Show how much physical memory is available on this system" { | ||
sudo dmesg | grep -i memory | ||
} | ||
|
||
@test "dmesg: Show kernel messages with a timestamp (available in kernels 3.5.0 and newer)" { | ||
sudo dmesg -T | ||
} | ||
|
||
@test "dmesg: Show kernel messages in human-readable form (available in kernels 3.5.0 and newer)" { | ||
sudo dmesg -H | ||
} | ||
|
||
@test "dmesg: Colorize output (available in kernels 3.5.0 and newer)" { | ||
sudo dmesg -L | ||
} |