Skip to content

Commit

Permalink
fixed some more warnings in pio_decomp_frame_tests.F90.in
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Jun 25, 2019
1 parent 4e08185 commit 6a6e814
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/general/pio_decomp_frame_tests.F90.in
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ PIO_TF_AUTO_TEST_SUB_BEGIN nc_write_read_4d_col_decomp
(start(2) - 1 + j - 1) * dims(1) + i
wbuf(i,j,k,f) = wbuf(i,j,k,f) + (f - 1) * (dims(1) * dims(2) * dims(3))
tmp_idx = (k - 1) * (ncols * nrows) + (j - 1) * nrows + i
compdof(tmp_idx) = wbuf(i,j,k,1)
compdof(tmp_idx) = int(wbuf(i,j,k,1))
end do
end do
end do
Expand Down Expand Up @@ -275,7 +275,7 @@ PIO_TF_AUTO_TEST_SUB_BEGIN nc_reuse_3d_decomp
do j=1,ncols
do i=1,nrows
tmp_idx = (k - 1) * (ncols * nrows) + (j - 1) * nrows + i
compdof(tmp_idx) = wbuf4d(i,j,k,1)
compdof(tmp_idx) = int(wbuf4d(i,j,k,1))
end do
end do
end do
Expand Down Expand Up @@ -457,7 +457,7 @@ PIO_TF_AUTO_TEST_SUB_BEGIN nc_test_limited_time_dim
(start(2) - 1 + j - 1) * dims(1) + i
wbuf(i,j,k,f) = wbuf(i,j,k,f) + (f - 1) * (dims(1) * dims(2) * dims(3))
tmp_idx = (k - 1) * (ncols * nrows) + (j - 1) * nrows + i
compdof(tmp_idx) = wbuf(i,j,k,1)
compdof(tmp_idx) = int(wbuf(i,j,k,1))
end do
end do
end do
Expand Down

0 comments on commit 6a6e814

Please sign in to comment.