diff options
| author | Qiang Ma <maqianga@uniontech.com> | 2026-05-27 12:59:29 +0300 |
|---|---|---|
| committer | Petr Mladek <pmladek@suse.com> | 2026-06-03 15:59:29 +0300 |
| commit | ed8f317671d9a6bd1daf2f0cb152e126eae2bf10 (patch) | |
| tree | 23208a0edbf273db46d5ee6fdc652f6058c779d8 | |
| parent | 8f7168335cb2e438668c5d94eea76621c9a10edd (diff) | |
| download | linux-ed8f317671d9a6bd1daf2f0cb152e126eae2bf10.tar.xz | |
selftests: livepatch: set LC_ALL=C to fix locale-dependent test failure
When executing the command
"make -C tools/testing/selftests TARGETS=livepatch run_tests",
the following error message was reported.
TEST: livepatch interaction with ftrace_enabled sysctl ... not ok
...
livepatch: sysctlo
: setting key "kernel.ftrace_enabled": Device or resource busy
livepatch: sysctl: setting key "kernel.ftrace_enabled": 设备或资源忙
...
ERROR: livepatch kselftest(s) failed
not ok 5 selftests: livepatch: test-ftrace.sh # exit=1
To fix it, set LC_ALL=C.
Signed-off-by: Qiang Ma <maqianga@uniontech.com>
Acked-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Petr Mladek <pmladek@suse.com>
Link: https://patch.msgid.link/20260527095929.1504032-1-maqianga@uniontech.com
Signed-off-by: Petr Mladek <pmladek@suse.com>
| -rw-r--r-- | tools/testing/selftests/livepatch/functions.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/livepatch/functions.sh b/tools/testing/selftests/livepatch/functions.sh index 2bc50271729c..30dc677b2f45 100644 --- a/tools/testing/selftests/livepatch/functions.sh +++ b/tools/testing/selftests/livepatch/functions.sh @@ -4,6 +4,8 @@ # Shell functions for the rest of the scripts. +export LC_ALL=C + MAX_RETRIES=600 RETRY_INTERVAL=".1" # seconds SYSFS_KERNEL_DIR="/sys/kernel" |
