@@ -123,7 +123,7 @@ subroutine test_10(error_cnt)
123
123
error_cnt = error_cnt + 1
124
124
else
125
125
! 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. &
127
127
str_vec(1 )==' ..\path\to\files\file1.txt' ) then
128
128
write (error_unit,' (A)' ) ' ...success'
129
129
else
@@ -282,7 +282,7 @@ subroutine test_10(error_cnt)
282
282
error_cnt = error_cnt + 1
283
283
else
284
284
! 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. &
286
286
str_vec(1 )==' ..\path\to\files\file1.txt' ) then
287
287
write (error_unit,' (A)' ) ' ...success'
288
288
else
@@ -304,7 +304,7 @@ subroutine test_10(error_cnt)
304
304
else
305
305
write (error_unit,' (A)' ) ' ...success'
306
306
end if
307
-
307
+
308
308
309
309
!- -------------------------------
310
310
@@ -321,12 +321,12 @@ end module jf_test_10_mod
321
321
program jf_test_10
322
322
323
323
! ! Tenth unit test.
324
-
324
+
325
325
use jf_test_10_mod , only: test_10
326
326
implicit none
327
327
integer :: n_errors
328
328
n_errors = 0
329
329
call test_10(n_errors)
330
330
if (n_errors /= 0 ) stop 1
331
331
end program jf_test_10
332
- ! *****************************************************************************************
332
+ ! *****************************************************************************************
0 commit comments