Skip to content

Commit

Permalink
selftests: connector: Fix input argument error paths to skip
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
shuahkh authored and kuba-moo committed Aug 1, 2023
1 parent 079082c commit 04786c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/testing/selftests/connector/proc_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,15 +248,15 @@ 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) {
if (strcmp(argv[1], "-f") == 0) {
filter = 1;
} else {
printf("Valid option : -f (for filter feature)\n");
exit(1);
exit(KSFT_SKIP);
}
}

Expand Down

0 comments on commit 04786c0

Please sign in to comment.