Skip to content

Commit f0f672a

Browse files
authored
Merge pull request #495 from CEED/jeremy/code-cov-fix
Tests - add missing codecov markers
2 parents 49ef065 + cae8d85 commit f0f672a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/t506-operator-f.f90

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,14 @@ program test
191191
total2=total2+hv(voffset+2*i)
192192
enddo
193193
if (abs(total1-1.)>1.0d-10) then
194+
! LCOV_EXCL_START
194195
write(*,*) 'Computed Area: ',total1,' != True Area: 1.0'
196+
! LCOV_EXCL_STOP
195197
endif
196198
if (abs(total2-2.)>1.0d-10) then
199+
! LCOV_EXCL_START
197200
write(*,*) 'Computed Area: ',total2,' != True Area: 2.0'
201+
! LCOV_EXCL_STOP
198202
endif
199203
call ceedvectorrestorearrayread(v,hv,voffset,err)
200204

@@ -212,10 +216,14 @@ program test
212216
total2=total2+hv(voffset+2*i)
213217
enddo
214218
if (abs(total1-1.)>1.0d-10) then
219+
! LCOV_EXCL_START
215220
write(*,*) 'Computed Area: ',total1,' != True Area: 1.0'
221+
! LCOV_EXCL_STOP
216222
endif
217223
if (abs(total2-2.)>1.0d-10) then
224+
! LCOV_EXCL_START
218225
write(*,*) 'Computed Area: ',total2,' != True Area: 2.0'
226+
! LCOV_EXCL_STOP
219227
endif
220228
call ceedvectorrestorearrayread(v,hv,voffset,err)
221229

0 commit comments

Comments
 (0)