From: shuah at kernel.org (Shuah Khan)
Subject: [PATCH] selftests: intel_pstate: notification about privilege required to run intel_pstate testing script
Date: Tue, 29 May 2018 11:05:47 -0600 [thread overview]
Message-ID: <80da5a3b-fb1b-a9e5-5c4b-38b485fde688@kernel.org> (raw)
In-Reply-To: <20180526170135.3340-1-ahiliation@gmail.com>
On 05/26/2018 11:01 AM, Jeffrin Jose T wrote:
> The intel_pstate related testing script need root level privileges
> when trying to access certain file for the successful execution of
> the script.But this is not the case always like when using evaluation
> only mode, which only require user level privilege.
>
> This patch is to notify the user about the privilege the script
> demands for the successful execution of the test.
>
> Signed-off-by: Jeffrin Jose T (Rajagiri SET) <ahiliation at gmail.com>
> ---
> tools/testing/selftests/intel_pstate/run.sh | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/tools/testing/selftests/intel_pstate/run.sh b/tools/testing/selftests/intel_pstate/run.sh
> index 6ded61670f6d..4ddd389c2cb9 100755
> --- a/tools/testing/selftests/intel_pstate/run.sh
> +++ b/tools/testing/selftests/intel_pstate/run.sh
> @@ -33,6 +33,12 @@ EVALUATE_ONLY=0
> # Kselftest framework requirement - SKIP code is 4.
> ksft_skip=4
>
> +msg="skip all tests:"
> +if [ $UID != 0 ] && [ $EVALUATE_ONLY == 0 ]; then
> + echo $msg please run this as root >&2
> + exit $ksft_skip
> +fi
> +
> if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then
> echo "$0 # Skipped: Test can only run on x86 architectures."
> exit $ksft_skip
>
Why not do the arch check first and then do the root check? The order of
arch followed by root on non-x86 arch definitely better than root first
check.
thanks,
-- Shuah
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: shuah@kernel.org (Shuah Khan)
Subject: [PATCH] selftests: intel_pstate: notification about privilege required to run intel_pstate testing script
Date: Tue, 29 May 2018 11:05:47 -0600 [thread overview]
Message-ID: <80da5a3b-fb1b-a9e5-5c4b-38b485fde688@kernel.org> (raw)
Message-ID: <20180529170547.AY38pgEMcHgDLv_9SbEInbqtC0cRgdiOvtWlJxwlzrs@z> (raw)
In-Reply-To: <20180526170135.3340-1-ahiliation@gmail.com>
On 05/26/2018 11:01 AM, Jeffrin Jose T wrote:
> The intel_pstate related testing script need root level privileges
> when trying to access certain file for the successful execution of
> the script.But this is not the case always like when using evaluation
> only mode, which only require user level privilege.
>
> This patch is to notify the user about the privilege the script
> demands for the successful execution of the test.
>
> Signed-off-by: Jeffrin Jose T (Rajagiri SET) <ahiliation at gmail.com>
> ---
> tools/testing/selftests/intel_pstate/run.sh | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/tools/testing/selftests/intel_pstate/run.sh b/tools/testing/selftests/intel_pstate/run.sh
> index 6ded61670f6d..4ddd389c2cb9 100755
> --- a/tools/testing/selftests/intel_pstate/run.sh
> +++ b/tools/testing/selftests/intel_pstate/run.sh
> @@ -33,6 +33,12 @@ EVALUATE_ONLY=0
> # Kselftest framework requirement - SKIP code is 4.
> ksft_skip=4
>
> +msg="skip all tests:"
> +if [ $UID != 0 ] && [ $EVALUATE_ONLY == 0 ]; then
> + echo $msg please run this as root >&2
> + exit $ksft_skip
> +fi
> +
> if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then
> echo "$0 # Skipped: Test can only run on x86 architectures."
> exit $ksft_skip
>
Why not do the arch check first and then do the root check? The order of
arch followed by root on non-x86 arch definitely better than root first
check.
thanks,
-- Shuah
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Shuah Khan <shuah@kernel.org>
To: Jeffrin Jose T <ahiliation@gmail.com>,
kstewart@linuxfoundation.org, daniel.diaz@linaro.org,
pombredanne@nexb.com, thomas@m3y3r.de,
gregkh@linuxfoundation.org
Cc: linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org,
Shuah Khan <shuah@kernel.org>
Subject: Re: [PATCH] selftests: intel_pstate: notification about privilege required to run intel_pstate testing script
Date: Tue, 29 May 2018 11:05:47 -0600 [thread overview]
Message-ID: <80da5a3b-fb1b-a9e5-5c4b-38b485fde688@kernel.org> (raw)
In-Reply-To: <20180526170135.3340-1-ahiliation@gmail.com>
On 05/26/2018 11:01 AM, Jeffrin Jose T wrote:
> The intel_pstate related testing script need root level privileges
> when trying to access certain file for the successful execution of
> the script.But this is not the case always like when using evaluation
> only mode, which only require user level privilege.
>
> This patch is to notify the user about the privilege the script
> demands for the successful execution of the test.
>
> Signed-off-by: Jeffrin Jose T (Rajagiri SET) <ahiliation@gmail.com>
> ---
> tools/testing/selftests/intel_pstate/run.sh | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/tools/testing/selftests/intel_pstate/run.sh b/tools/testing/selftests/intel_pstate/run.sh
> index 6ded61670f6d..4ddd389c2cb9 100755
> --- a/tools/testing/selftests/intel_pstate/run.sh
> +++ b/tools/testing/selftests/intel_pstate/run.sh
> @@ -33,6 +33,12 @@ EVALUATE_ONLY=0
> # Kselftest framework requirement - SKIP code is 4.
> ksft_skip=4
>
> +msg="skip all tests:"
> +if [ $UID != 0 ] && [ $EVALUATE_ONLY == 0 ]; then
> + echo $msg please run this as root >&2
> + exit $ksft_skip
> +fi
> +
> if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then
> echo "$0 # Skipped: Test can only run on x86 architectures."
> exit $ksft_skip
>
Why not do the arch check first and then do the root check? The order of
arch followed by root on non-x86 arch definitely better than root first
check.
thanks,
-- Shuah
next prev parent reply other threads:[~2018-05-29 17:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-26 17:01 [PATCH] selftests: intel_pstate: notification about privilege required to run intel_pstate testing script ahiliation
2018-05-26 17:01 ` Jeffrin Jose T
2018-05-26 17:01 ` Jeffrin Jose T
2018-05-29 17:05 ` shuah [this message]
2018-05-29 17:05 ` Shuah Khan
2018-05-29 17:05 ` Shuah Khan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=80da5a3b-fb1b-a9e5-5c4b-38b485fde688@kernel.org \
--to=unknown@example.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.