]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
selftests/run_kselftest.sh: Resolve BASE_DIR with pwd -P
authorRicardo B. Marlière <rbm@suse.com>
Fri, 20 Mar 2026 18:29:18 +0000 (15:29 -0300)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 13 Apr 2026 17:05:39 +0000 (11:05 -0600)
run_kselftest.sh only needs to canonicalize the directory containing the
script itself. Use shell-native path resolution for that by changing into
the directory and calling pwd -P.

This avoids depending on either realpath or readlink -f while still
producing a physical absolute path for BASE_DIR.

Signed-off-by: Ricardo B. Marlière <rbm@suse.com>
Link: https://lore.kernel.org/r/20260320-selftests-fixes-v1-3-79144f76be01@suse.com
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/run_kselftest.sh

index ec79160b8d8b73ef7dd4bd2dc0d5215b508e2ee6..8fa808e10455efa9d1abadd8b264c6b2d803209d 100755 (executable)
@@ -4,12 +4,7 @@
 # Run installed kselftest tests.
 #
 
-# 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
+BASE_DIR=$(cd "$(dirname "$0")" && pwd -P)
 
 cd $BASE_DIR
 TESTS="$BASE_DIR"/kselftest-list.txt