Skip to content

Commit

Permalink
CI: skip some bulk tests with BMI
Browse files Browse the repository at this point in the history
  • Loading branch information
soumagne committed Oct 20, 2023
1 parent 170fee6 commit 8f08e68
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Testing/unit/hg/test_bulk.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,10 @@ main(int argc, char *argv[])
HG_TEST_CHECK_HG_ERROR(error, hg_ret, "hg_test_bulk_destroy() failed (%s)",
HG_Error_to_string(hg_ret));

/* BMI has issues with next tests */
if (strcmp(HG_Class_get_name(info.hg_class), "bmi") == 0)
goto cleanup;

/**************************************************************************
* Small RPC bulk tests.
*************************************************************************/
Expand Down Expand Up @@ -457,7 +461,6 @@ main(int argc, char *argv[])
*************************************************************************/

#ifndef HG_HAS_XDR

/* Create bulk info */
hg_ret =
hg_test_bulk_create(info.hg_class, 1024, buf_size / 1024, &bulk_info);
Expand Down Expand Up @@ -500,6 +503,7 @@ main(int argc, char *argv[])
HG_TEST_CHECK_HG_ERROR(error, hg_ret, "hg_test_bulk_destroy() failed (%s)",
HG_Error_to_string(hg_ret));

cleanup:
hg_unit_cleanup(&info);

return EXIT_SUCCESS;
Expand Down

0 comments on commit 8f08e68

Please sign in to comment.