Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/tests/jf_test_26.F90
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ subroutine test_26(error_cnt)
logical(lk) :: is_valid
character(kind=CK,len=:),allocatable :: error_msg

error_cnt = 0

call f%initialize() ! specify whatever init options you want.

write(error_unit,'(A)') 'adding data to json_file...'
Expand Down Expand Up @@ -76,7 +78,7 @@ program jf_test_26
use jf_test_26_mod , only: test_26
implicit none
integer :: n_errors
n_errors = 0

call test_26(n_errors)
if (n_errors /= 0) stop 1

Expand Down