mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
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: Shuah Khan <skhan@linuxfoundation.org> Reviewed-by: Anjali Kulkarni <anjali.k.kulkarni@oracle.com> Link: https://lore.kernel.org/r/20230729002403.4278-1-skhan@linuxfoundation.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
079082c60a
commit
04786c0659
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue