Skip to content

Commit 3df03c2

Browse files
committed
cleanup
cleanup
1 parent 826b182 commit 3df03c2

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/fpm.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ subroutine build_model(model, settings, package, error)
127127
end if
128128

129129
!> Add this dependency's package-level macros
130-
print *, 'dep preprocess? ',allocated(dep%preprocess),' nam,e=',dep%name
131130
if (allocated(dep%preprocess)) then
132131
do j = 1, size(dep%preprocess)
133132
if (dep%preprocess(j)%name == "cpp") then

src/fpm/manifest/dependency.f90

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,8 @@ subroutine new_dependency(self, table, root, error)
109109

110110
!> Get optional preprocessor directives
111111
call get_value(table, "preprocess", child, requested=.false.)
112-
print *, 'has preprocess? ',associated(child)
113112
if (associated(child)) then
114113
call new_preprocessors(self%preprocess, child, error)
115-
print *, 'size preprocess ',size(self%preprocess),' error? =',allocated(error)
116114
if (allocated(error)) return
117115
endif
118116

@@ -292,7 +290,6 @@ subroutine new_dependencies(deps, table, root, meta, error)
292290
! Parse as a standard dependency
293291
is_meta(idep) = .false.
294292

295-
print *, 'new dependency ',all_deps(idep)%name
296293
call new_dependency(all_deps(idep), node, root, error)
297294
if (allocated(error)) return
298295

test/fpm_test/test_package_dependencies.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ subroutine test_non_updated_dependencies(error)
334334
return
335335
end if
336336

337-
338337
! Test that dependency 3 is flagged as "not update"
339338
if (manifest_deps%dep(3)%update) then
340339
call test_failed(error, "Updated dependency (git rev) detected, should not be")

0 commit comments

Comments
 (0)