diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2017-01-13 12:06:45 +0530 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-01-19 10:32:05 -0700 |
commit | e66d5b673741cf6b7da250da9f84a165b1e4342d (patch) | |
tree | 8f9208141d6680a61dfe931544cf0e19b8a7b242 /tools/testing/selftests/cpufreq/Makefile | |
parent | 6320303fb27ae46919c13b2f9ebf3f3a3ad63859 (diff) |
selftest: cpufreq: Add support for cpufreq tests
This patch adds supports for basic cpufreq tests, which can be performed
independent of any platform.
It does basic tests for now, like
- reading all cpufreq files
- trying to update them
- switching frequencies
- switching governors
This can be extended to have more specific tests later on.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/cpufreq/Makefile')
-rw-r--r-- | tools/testing/selftests/cpufreq/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/testing/selftests/cpufreq/Makefile b/tools/testing/selftests/cpufreq/Makefile new file mode 100644 index 000000000000..f5c6bb1965a1 --- /dev/null +++ b/tools/testing/selftests/cpufreq/Makefile @@ -0,0 +1,8 @@ +all: + +TEST_PROGS := main.sh +TEST_FILES := cpu.sh cpufreq.sh governor.sh + +include ../lib.mk + +clean: |