Skip to content

Commit

Permalink
test development
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed May 4, 2018
1 parent c42c550 commit 50a2005
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tests/cunit/test_darray_fill.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,17 +119,17 @@ int main(int argc, char **argv)
if ((ret = get_iotypes(&num_flavors, flavor)))
ERR(ret);

for (int fv = 0; fv < NUM_TEST_CASES_FILLVALUE; fv++)
for (int r = 0; r < NUM_REARRANGERS_TO_TEST; r++)
{
#define NUM_TYPES 1
int test_type[NUM_TYPES] = {PIO_INT};
for (int t = 0; t < NUM_TYPES; t++)
for (int fv = 0; fv < NUM_TEST_CASES_FILLVALUE; fv++)
{
void *expected;
expected = expected_int;

for (int r = 0; r < NUM_REARRANGERS_TO_TEST; r++)
#define NUM_TYPES 1
int test_type[NUM_TYPES] = {PIO_INT};
for (int t = 0; t < NUM_TYPES; t++)
{
void *expected;
expected = expected_int;

/* Initialize the PIO IO system. This specifies how
* many and which processors are involved in I/O. */
if ((ret = PIOc_Init_Intracomm(test_comm, NUM_IO_PROCS, ioproc_stride, ioproc_start,
Expand Down Expand Up @@ -219,9 +219,9 @@ int main(int argc, char **argv)
if ((ret = PIOc_finalize(iosysid)))
return ret;

} /* next rearranger */
} /* next type */
} /* next fill value test case */
} /* next type */
} /* next fill value test case */
} /* next rearranger */
} /* endif my_rank < TARGET_NTASKS */

/* Finalize the MPI library. */
Expand Down

0 comments on commit 50a2005

Please sign in to comment.