We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f30fd6b commit cbfb82fCopy full SHA for cbfb82f
src/sourcery/test_s.f90
@@ -5,17 +5,19 @@
5
contains
6
7
module procedure report
8
- integer i
9
10
associate(me => this_image())
11
if (me==1) print *, new_line('a'), test%subject()
12
associate(test_results => test%results())
13
associate(num_tests => size(test_results))
14
tests = tests + num_tests
15
if (me==1) then
16
- do i=1,num_tests
17
- if (me==1) print *," ",test_results(i)%characterize()
18
- end do
+ block
+ integer i
+ do i=1,num_tests
+ if (me==1) print *," ",test_results(i)%characterize()
19
+ end do
20
+ end block
21
end if
22
block
23
logical, allocatable :: passing_tests(:)
0 commit comments