From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751499AbdAMWfZ (ORCPT ); Fri, 13 Jan 2017 17:35:25 -0500 Received: from resqmta-po-09v.sys.comcast.net ([96.114.154.168]:48311 "EHLO resqmta-po-09v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751232AbdAMWfX (ORCPT ); Fri, 13 Jan 2017 17:35:23 -0500 Reply-To: shuah@kernel.org Subject: Re: [PATCH 0/4] selftest: cpufreq: Add support for cpufreq framework References: To: Viresh Kumar , Rafael Wysocki Cc: linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Vincent Guittot , linux-kselftest@vger.kernel.org, Shuah Khan From: Shuah Khan Message-ID: Date: Fri, 13 Jan 2017 15:35:20 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/12/2017 11:36 PM, Viresh Kumar wrote: > Hi, > > This patchset adds support for cpufreq selftests to the kernel selftest > framework. More details can be found on individual patches. > > These are all tested after installation of selftests on ARM Dual A15 > core Exynos platform. > > The content of the output file for the basic tests looks like this: > http://pastebin.com/nBY9AfD5 . > > -- > viresh Hi Viresh, Could you please add .gitignore for generated files. You can send that as a separate patch and don't have to resend the series. thanks, -- Shuah > > Viresh Kumar (4): > selftest: cpufreq: Add support for cpufreq tests > selftest: cpufreq: Add suspend/resume/hibernate support > selftest: cpufreq: Add support to test cpufreq modules > selftest: cpufreq: Add special tests > > tools/testing/selftests/Makefile | 1 + > tools/testing/selftests/cpufreq/Makefile | 8 + > tools/testing/selftests/cpufreq/cpu.sh | 84 ++++++++ > tools/testing/selftests/cpufreq/cpufreq.sh | 241 ++++++++++++++++++++++ > tools/testing/selftests/cpufreq/governor.sh | 153 ++++++++++++++ > tools/testing/selftests/cpufreq/main.sh | 194 ++++++++++++++++++ > tools/testing/selftests/cpufreq/module.sh | 243 +++++++++++++++++++++++ > tools/testing/selftests/cpufreq/special-tests.sh | 115 +++++++++++ > 8 files changed, 1039 insertions(+) > create mode 100644 tools/testing/selftests/cpufreq/Makefile > create mode 100755 tools/testing/selftests/cpufreq/cpu.sh > create mode 100755 tools/testing/selftests/cpufreq/cpufreq.sh > create mode 100755 tools/testing/selftests/cpufreq/governor.sh > create mode 100755 tools/testing/selftests/cpufreq/main.sh > create mode 100755 tools/testing/selftests/cpufreq/module.sh > create mode 100755 tools/testing/selftests/cpufreq/special-tests.sh >