Skip to content

Commit

Permalink
Fix unset VOL name/info in singlethread API tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Oct 22, 2024
1 parent 875a808 commit 2122755
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/API/H5_api_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ main(int argc, char **argv)
n_tests_skipped_g = 0;

#endif

thread_info_t tinfo[MAX_THREADS];

memset(tinfo, 0, sizeof(tinfo));
Expand Down Expand Up @@ -523,6 +522,8 @@ main(int argc, char **argv)
#else
tinfo[0].thread_idx = 0;
tinfo[0].result = API_TEST_PASS;
tinfo[0].vol_connector_name = vol_connector_name;
tinfo[0].vol_connector_info = vol_connector_info;

if ((retval = run_h5_API_tests_thread((void*) &tinfo[0])) == NULL) {
fprintf(stderr, "Error running API tests\n");
Expand Down

0 comments on commit 2122755

Please sign in to comment.