projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1efe202
)
selftests/run_kselftest.sh: Use readlink if realpath is not available
author
Yosry Ahmed
<yosry.ahmed@linux.dev>
Tue, 18 Mar 2025 16:05:10 +0000
(16:05 +0000)
committer
Shuah Khan
<skhan@linuxfoundation.org>
Thu, 15 May 2025 22:52:47 +0000
(16:52 -0600)
'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>
tools/testing/selftests/run_kselftest.sh
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/run_kselftest.sh
b/tools/testing/selftests/run_kselftest.sh
index
50e03ee
..
0443bea
100755
(executable)
--- 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