Commit 04786c06 authored by Shuah Khan's avatar Shuah Khan Committed by Jakub Kicinski

selftests: connector: Fix input argument error paths to skip

Fix input argument parsing paths to skip from their error legs.
This fix helps to avoid false test failure reports without running
the test.
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
Reviewed-by: default avatarAnjali Kulkarni <anjali.k.kulkarni@oracle.com>
Link: https://lore.kernel.org/r/20230729002403.4278-1-skhan@linuxfoundation.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 079082c6
......@@ -248,7 +248,7 @@ int main(int argc, char *argv[])
if (argc > 2) {
printf("Expected 0(assume no-filter) or 1 argument(-f)\n");
exit(1);
exit(KSFT_SKIP);
}
if (argc == 2) {
......@@ -256,7 +256,7 @@ int main(int argc, char *argv[])
filter = 1;
} else {
printf("Valid option : -f (for filter feature)\n");
exit(1);
exit(KSFT_SKIP);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment