Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: rtnetlink: correct error message in rtnetlink.sh fou test

The rtnetlink FOU selftest prints an incorrect string:
"FAIL: fou"s. Change it to the intended "FAIL: fou" by
removing a stray character in the end_test string of the test.

Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20250921192111.1567498-1-alok.a.tiwari@oracle.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Alok Tiwari and committed by
Jakub Kicinski
f7706458 09630ab9

+1 -1
+1 -1
tools/testing/selftests/net/rtnetlink.sh
··· 526 526 run_cmd_fail ip -netns "$testns" fou del port 9999 527 527 run_cmd ip -netns "$testns" fou del port 7777 528 528 if [ $ret -ne 0 ]; then 529 - end_test "FAIL: fou"s 529 + end_test "FAIL: fou" 530 530 return 1 531 531 fi 532 532