Skip to content

Commit f65ec49

Browse files
committed
Remove leftover debugging code.
1 parent 0e5fb36 commit f65ec49

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

test/unit/fortran/src/pio_reader/test_pio_reader.pf

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1532,8 +1532,6 @@ subroutine test_pio_reader_1d_char_full_subset_read()
15321532
character(len=*), parameter :: fname = &
15331533
"../../../rrtmgp-data/rrtmgp-gas-sw-g112.nc"
15341534

1535-
integer :: i !DEBUGGING -JN
1536-
15371535
! Begin test:
15381536

15391537
reader => create_netcdf_reader_t()
@@ -1556,11 +1554,6 @@ subroutine test_pio_reader_1d_char_full_subset_read()
15561554
@assertEqual(32, len(gas_names))
15571555
@assertEqual(6, size(gas_names))
15581556

1559-
! DEBUGGING -JN
1560-
do i=1, size(gas_names)
1561-
write(*,*) "gas_names(", i, ") = '", trim(gas_names(i)), "'"
1562-
end do
1563-
15641557
! Check that the variable's values are correct:
15651558
@assertEqual("cfc11", trim(gas_names(1)))
15661559
@assertEqual("cfc12", trim(gas_names(2)))
@@ -1569,7 +1562,6 @@ subroutine test_pio_reader_1d_char_full_subset_read()
15691562
@assertEqual("hfc125", trim(gas_names(5)))
15701563
@assertEqual("hfc23", trim(gas_names(6)))
15711564

1572-
15731565
! Perform test cleanup:
15741566
deallocate(gas_names)
15751567
call reader%close_file(errmsg, errcode)
@@ -1680,7 +1672,7 @@ subroutine test_pio_reader_missing_count_argument()
16801672

16811673
end subroutine test_pio_reader_missing_count_argument
16821674

1683-
!-----------------------------------------
1675+
!-----------------------------------------
16841676

16851677
@test
16861678
subroutine test_pio_reader_0d_real_subset_err()

0 commit comments

Comments
 (0)