@@ -252,7 +252,7 @@ subroutine test_dependency_empty(error)
252
252
call new_table(table)
253
253
table% key = " example"
254
254
255
- call new_dependency(dependency, table, error)
255
+ call new_dependency(dependency, table, error= error )
256
256
257
257
end subroutine test_dependency_empty
258
258
@@ -274,7 +274,7 @@ subroutine test_dependency_pathtag(error)
274
274
call set_value(table, ' path' , ' "package"' , stat)
275
275
call set_value(table, ' tag' , ' "v20.1"' , stat)
276
276
277
- call new_dependency(dependency, table, error)
277
+ call new_dependency(dependency, table, error= error )
278
278
279
279
end subroutine test_dependency_pathtag
280
280
@@ -295,7 +295,7 @@ subroutine test_dependency_nourl(error)
295
295
table% key = ' example'
296
296
call set_value(table, ' tag' , ' "v20.1"' , stat)
297
297
298
- call new_dependency(dependency, table, error)
298
+ call new_dependency(dependency, table, error= error )
299
299
300
300
end subroutine test_dependency_nourl
301
301
@@ -317,7 +317,7 @@ subroutine test_dependency_gitpath(error)
317
317
call set_value(table, ' path' , ' "package"' , stat)
318
318
call set_value(table, ' git' , ' "https://gitea.com/fortran-lang/pack"' , stat)
319
319
320
- call new_dependency(dependency, table, error)
320
+ call new_dependency(dependency, table, error= error )
321
321
322
322
end subroutine test_dependency_gitpath
323
323
@@ -340,7 +340,7 @@ subroutine test_dependency_gitconflict(error)
340
340
call set_value(table, ' branch' , ' "latest"' , stat)
341
341
call set_value(table, ' tag' , ' "v20.1"' , stat)
342
342
343
- call new_dependency(dependency, table, error)
343
+ call new_dependency(dependency, table, error= error )
344
344
345
345
end subroutine test_dependency_gitconflict
346
346
@@ -361,7 +361,7 @@ subroutine test_dependency_wrongkey(error)
361
361
table% key = ' example'
362
362
call set_value(table, ' not-available' , ' "anywhere"' , stat)
363
363
364
- call new_dependency(dependency, table, error)
364
+ call new_dependency(dependency, table, error= error )
365
365
366
366
end subroutine test_dependency_wrongkey
367
367
@@ -379,7 +379,7 @@ subroutine test_dependencies_empty(error)
379
379
380
380
call new_table(table)
381
381
382
- call new_dependencies(dependencies, table, error)
382
+ call new_dependencies(dependencies, table, error= error )
383
383
if (allocated (error)) return
384
384
385
385
if (allocated (dependencies)) then
@@ -405,7 +405,7 @@ subroutine test_dependencies_typeerror(error)
405
405
call new_table(table)
406
406
call add_array(table, ' dep1' , children, stat)
407
407
408
- call new_dependencies(dependencies, table, error)
408
+ call new_dependencies(dependencies, table, error= error )
409
409
410
410
end subroutine test_dependencies_typeerror
411
411
0 commit comments