From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konstantin Khorenko Date: Mon, 24 Aug 2026 16:37:19 +0200 Subject: [Devel] [PATCH RHEL10 COMMIT] selftests: netdevsim: mark ethtool-features.sh executable In-Reply-To: <20260824143528.456165-1-khorenko@virtuozzo.com> Message-ID: <202608241437.67OEbJhp456439@hci8VM.finist.virtuozzo.com> List-Id: The commit is pushed to "branch-rh10-6.12.0-211.39.1.16.x.vz10-ovz" and will appear at git at bitbucket.org:openvz/vzkernel.git after rh10-6.12.0-211.39.1.16.8.vz10 ------> commit f54503861aa682de0a3288b554f6350eac98b099 Author: Eva Kurchatova Date: Fri Aug 21 19:41:30 2026 +0300 selftests: netdevsim: mark ethtool-features.sh executable The script is listed in TEST_PROGS but, unlike its 14 siblings there, is not executable. Nothing actually fails: run_kselftest.sh falls back to running a non-executable test through the interpreter from its shebang, so the only effect is # Warning: file ethtool-features.sh is not executable in the log. Still, the warning reads like a problem, kernel packaging installs the script 0644 where every other test in the directory is 0755, and running it by hand needs an explicit interpreter. Set the bit. https://virtuozzo.atlassian.net/browse/VSTOR-139651 Feature: fix selftests Signed-off-by: Eva Kurchatova Reviewed-by: Konstantin Khorenko --- tools/testing/selftests/drivers/net/netdevsim/ethtool-features.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/tools/testing/selftests/drivers/net/netdevsim/ethtool-features.sh b/tools/testing/selftests/drivers/net/netdevsim/ethtool-features.sh old mode 100644 new mode 100755