Skip to content

Commit

Permalink
fixing order of chunksizes
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Aug 28, 2020
1 parent 15a191b commit eb23c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/ftst_vars_chunking.F90
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ program ftst_vars_chunking
ret_val = PIO_openfile(pio_iosystem, pio_file, iotype(iotype_idx), filename, PIO_nowrite)
if (ierr .ne. PIO_NOERR) stop 23

! ! Find var chunksizes.
! Find var chunksizes using varid.
ret_val = PIO_inq_var_chunking(pio_file, 1, storage_in, chunksizes_in)
if (ierr .ne. PIO_NOERR) stop 25
if (chunksizes_in(1) .ne. chunksize1) stop 26
if (chunksizes_in(2) .ne. chunksize2) stop 26

! Close the file.
call PIO_closefile(pio_file)

Expand Down

0 comments on commit eb23c9f

Please sign in to comment.