From Fedora Project Wiki
Description
This test case tests the basic functionality of tuned tool. This tool can statically and dynamically tune your system according to selected profile.
Setup
- Check that you have
tuned package
version 2 installed:$ rpm -q tuned
- There must be installed tuned version 2 (not 1).
- If not install it:
# yum install tuned
How to test
- Start tuned (via systemd):
# systemctl start tuned.service
- List all available profiles:
# tuned-adm list
- Try to switch between profiles, e.g. for powersave profile:
# tuned-adm profile powersave
- Check if the profile was really set by:
# tuned-adm active
- Try several other profiles.
- When done switch tuned completely off by:
# systemctl stop tuned.service
- Check if the tuned process is not left running by:
# pgrep tuned
Expected Results
- No errors while switching profiles.
- No left tuned process when switched off.