mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
selftests/run_kselftest.sh: Use readlink if realpath is not available
'realpath' is not always available, fallback to 'readlink -f' if is not available. They seem to work equally well in this context. Link: https://lore.kernel.org/r/20250318160510.3441646-1-yosry.ahmed@linux.dev Signed-off-by: Yosry Ahmed <yosry.ahmed@linux.dev> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
parent
1efe202228
commit
1107dc4c5b
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user