Skip to content

Commit

Permalink
fabtests: Print warning for HMEM iface init failure
Browse files Browse the repository at this point in the history
Signed-off-by: Sai Sunku <sunkusa@amazon.com>
  • Loading branch information
sunkuamzn committed Jan 30, 2024
1 parent fc99843 commit e726e34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fabtests/common/shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,10 @@ int ft_init(void)
return ret;
}

return ft_hmem_init(opts.iface);
ret = ft_hmem_init(opts.iface);
if (ret)
FT_PRINTERR("ft_hmem_init", ret);
return ret;
}

int ft_sock_setup(int sock)
Expand Down

0 comments on commit e726e34

Please sign in to comment.