Skip to content

Commit 39e3bff

Browse files
committed
Merge pull request #166 from jacobwilliams/string-parse-tests
updated tests for string parsing bug fix
2 parents f0986f5 + 6421ec3 commit 39e3bff

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

files/inputs/test1.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"..\\path\\to\\files\\file2.txt",
1212
"..\\path\\to\\files\\file3.txt",
1313
"test \u2FA4 \uABCD \uABCD\uABCDtest",
14-
" test test test"
14+
" test \\u \" blah\\\" test test",
15+
"..\\path\\to\\files\\"
1516
],
1617
"empty_array": [
1718
],

src/tests/jf_test_10.f90

+5-5
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ subroutine test_10(error_cnt)
123123
error_cnt = error_cnt + 1
124124
else
125125
!also make sure the values are correct:
126-
if (found .and. size(str_vec)==5 .and. &
126+
if (found .and. size(str_vec)==6 .and. &
127127
str_vec(1)=='..\path\to\files\file1.txt') then
128128
write(error_unit,'(A)') '...success'
129129
else
@@ -282,7 +282,7 @@ subroutine test_10(error_cnt)
282282
error_cnt = error_cnt + 1
283283
else
284284
!also make sure the values are correct:
285-
if (found .and. size(str_vec)==5 .and. &
285+
if (found .and. size(str_vec)==6 .and. &
286286
str_vec(1)=='..\path\to\files\file1.txt') then
287287
write(error_unit,'(A)') '...success'
288288
else
@@ -304,7 +304,7 @@ subroutine test_10(error_cnt)
304304
else
305305
write(error_unit,'(A)') '...success'
306306
end if
307-
307+
308308

309309
!--------------------------------
310310

@@ -321,12 +321,12 @@ end module jf_test_10_mod
321321
program jf_test_10
322322

323323
!! Tenth unit test.
324-
324+
325325
use jf_test_10_mod , only: test_10
326326
implicit none
327327
integer :: n_errors
328328
n_errors = 0
329329
call test_10(n_errors)
330330
if (n_errors /= 0) stop 1
331331
end program jf_test_10
332-
!*****************************************************************************************
332+
!*****************************************************************************************

0 commit comments

Comments
 (0)