Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some test function prototypes #10836

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fabtests/ubertest/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ int fts_info_is_valid(void)
return 0;
}
if (test_info.test_class & (FI_MSG | FI_TAGGED) &&
!ft_check_rx_completion(test_info) &&
!ft_check_rx_completion() &&
!ft_use_comp_cntr(test_info.comp_type))
return 0;
if (test_info.test_type == FT_TEST_UNIT &&
Expand Down
2 changes: 1 addition & 1 deletion fabtests/ubertest/fabtest.h
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ int ft_check_rx_completion();
int ft_check_tx_completion();

int ft_send_sync_msg();
int ft_recv_n_msg();
int ft_recv_n_msg(int n);
int ft_recv_msg();
int ft_send_msg();
int ft_send_dgram();
Expand Down