diff mbox series

selftests/run_kselftest.sh: Use readlink if realpath is not available

Message ID 20250318160510.3441646-1-yosry.ahmed@linux.dev
State New
Headers show
Series selftests/run_kselftest.sh: Use readlink if realpath is not available | expand

Commit Message

Yosry Ahmed March 18, 2025, 4:05 p.m. UTC
'realpath' is not always available,  fallback to 'readlink -f' if is not
available. They seem to work equally well in this context.

Signed-off-by: Yosry Ahmed <yosry.ahmed@linux.dev>
---
 tools/testing/selftests/run_kselftest.sh | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

Comments

Shuah Khan March 28, 2025, 8:05 p.m. UTC | #1
On 3/18/25 10:05, Yosry Ahmed wrote:
> 'realpath' is not always available,  fallback to 'readlink -f' if is not
> available. They seem to work equally well in this context.

Can you add more specifics on "realpath" is not always available,"

No issues with the patch itself. I would like to know the cases
where "realpath" command is missing.


> 
> Signed-off-by: Yosry Ahmed <yosry.ahmed@linux.dev>
> ---
>   tools/testing/selftests/run_kselftest.sh | 9 ++++++++-
>   1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/run_kselftest.sh b/tools/testing/selftests/run_kselftest.sh
> index 50e03eefe7ac7..0443beacf3621 100755
> --- a/tools/testing/selftests/run_kselftest.sh
> +++ b/tools/testing/selftests/run_kselftest.sh
> @@ -3,7 +3,14 @@
>   #
>   # Run installed kselftest tests.
>   #
> -BASE_DIR=$(realpath $(dirname $0))
> +
> +# Fallback to readlink if realpath is not available
> +if which realpath > /dev/null; then
> +        BASE_DIR=$(realpath $(dirname $0))
> +else
> +        BASE_DIR=$(readlink -f $(dirname $0))
> +fi
> +
>   cd $BASE_DIR
>   TESTS="$BASE_DIR"/kselftest-list.txt
>   if [ ! -r "$TESTS" ] ; then

thanks,
-- Shuah
Yosry Ahmed March 29, 2025, 7:48 p.m. UTC | #2
March 28, 2025 at 10:05 PM, "Shuah Khan" <skhan@linuxfoundation.org> wrote:
> 
> On 3/18/25 10:05, Yosry Ahmed wrote:
> 
> > 'realpath' is not always available, fallback to 'readlink -f' if is not
> >  available. They seem to work equally well in this context.
> 
> Can you add more specifics on "realpath" is not always available,"
> No issues with the patch itself. I would like to know the cases
> where "realpath" command is missing.

Not all distros have realpath. In my case, it was an internal distro we use on some test machines, so I can't really share much details about it.

Thanks.

> > 
> > Signed-off-by: Yosry Ahmed <yosry.ahmed@linux.dev>
> >  ---
> >  tools/testing/selftests/run_kselftest.sh | 9 ++++++++-
> >  1 file changed, 8 insertions(+), 1 deletion(-)
> >  diff --git a/tools/testing/selftests/run_kselftest.sh b/tools/testing/selftests/run_kselftest.sh
> >  index 50e03eefe7ac7..0443beacf3621 100755
> >  --- a/tools/testing/selftests/run_kselftest.sh
> >  +++ b/tools/testing/selftests/run_kselftest.sh
> >  @@ -3,7 +3,14 @@
> >  #
> >  # Run installed kselftest tests.
> >  #
> >  -BASE_DIR=$(realpath $(dirname $0))
> >  +
> >  +# Fallback to readlink if realpath is not available
> >  +if which realpath > /dev/null; then
> >  + BASE_DIR=$(realpath $(dirname $0))
> >  +else
> >  + BASE_DIR=$(readlink -f $(dirname $0))
> >  +fi
> >  +
> >  cd $BASE_DIR
> >  TESTS="$BASE_DIR"/kselftest-list.txt
> >  if [ ! -r "$TESTS" ] ; then
> 
> thanks,
> 
> -- Shuah
>
diff mbox series

Patch

diff --git a/tools/testing/selftests/run_kselftest.sh b/tools/testing/selftests/run_kselftest.sh
index 50e03eefe7ac7..0443beacf3621 100755
--- a/tools/testing/selftests/run_kselftest.sh
+++ b/tools/testing/selftests/run_kselftest.sh
@@ -3,7 +3,14 @@ 
 #
 # Run installed kselftest tests.
 #
-BASE_DIR=$(realpath $(dirname $0))
+
+# Fallback to readlink if realpath is not available
+if which realpath > /dev/null; then
+        BASE_DIR=$(realpath $(dirname $0))
+else
+        BASE_DIR=$(readlink -f $(dirname $0))
+fi
+
 cd $BASE_DIR
 TESTS="$BASE_DIR"/kselftest-list.txt
 if [ ! -r "$TESTS" ] ; then