Skip to content

Commit a99f19d

Browse files
committed
aligned the frame of the table of results
1 parent 4d3057a commit a99f19d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/sorting/test_sorting.f90

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ subroutine initialize_tests()
241241
form='formatted', status='replace' )
242242
write( lun, '(a)' ) trim(compiler_version())
243243
write( lun, * )
244-
write( lun, '("| Type | Elements | Array Name | Method ' // &
244+
write( lun, '("| Type | Elements | Array Name | Method ' // &
245245
' | Time (s) |")' )
246-
write( lun, '("|-------------|----------|-----------------|-----------' // &
246+
write( lun, '("|--------------|----------|-----------------|-----------' // &
247247
'--|-----------|")' )
248248

249249
end subroutine initialize_tests
@@ -330,7 +330,7 @@ subroutine test_int_ord_sort( a, a_name, ltest )
330330
write(*,*) 'i = ', i
331331
write(*,'(a12, 2i7)') 'dummy(i-1:i) = ', dummy(i-1:i)
332332
end if
333-
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
333+
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
334334
'a12, " |", F10.6, " |" )' ) &
335335
test_size, a_name, "Ord_Sort", tdiff/rate
336336

@@ -405,7 +405,7 @@ subroutine test_char_ord_sort( a, a_name, ltest )
405405
write(*,*) 'i = ', i
406406
write(*,'(a, 2(1x,a4))') 'char_dummy(i-1:i) = ', char_dummy(i-1:i)
407407
end if
408-
write( lun, '("| Character |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
408+
write( lun, '("| Character |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
409409
'a12, " |", F10.6, " |" )' ) &
410410
char_size, a_name, "Ord_Sort", tdiff/rate
411411

@@ -484,7 +484,7 @@ subroutine test_string_ord_sort( a, a_name, ltest )
484484
write(*,'(a, 2(1x,a))') 'string_dummy(i-1:i) = ', &
485485
string_dummy(i-1:i)
486486
end if
487-
write( lun, '("| String_type |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
487+
write( lun, '("| String_type |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
488488
'a12, " |", F10.6, " |" )' ) &
489489
string_size, a_name, "Ord_Sort", tdiff/rate
490490

@@ -770,7 +770,7 @@ subroutine test_int_radix_sort( a, a_name, ltest )
770770
write(*,*) 'i = ', i
771771
write(*,'(a12, 2i7)') 'dummy(i-1:i) = ', dummy(i-1:i)
772772
end if
773-
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
773+
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
774774
'a12, " |", F10.6, " |" )' ) &
775775
test_size, a_name, "Radix_Sort", tdiff/rate
776776

@@ -816,7 +816,7 @@ subroutine test_real_radix_sort( a, a_name, ltest )
816816
write(*,*) 'i = ', i
817817
write(*,'(a12, 2f12.5)') 'real_dummy(i-1:i) = ', real_dummy(i-1:i)
818818
end if
819-
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
819+
write( lun, '("| Real |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
820820
'a12, " |", F10.6, " |" )' ) &
821821
test_size, a_name, "Radix_Sort", tdiff/rate
822822

@@ -923,7 +923,7 @@ subroutine test_int_sort( a, a_name, ltest )
923923
write(*,*) 'i = ', i
924924
write(*,'(a12, 2i7)') 'dummy(i-1:i) = ', dummy(i-1:i)
925925
end if
926-
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
926+
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
927927
'a12, " |", F10.6, " |" )' ) &
928928
test_size, a_name, "Sort", tdiff/rate
929929

@@ -987,7 +987,7 @@ subroutine test_char_sort( a, a_name, ltest )
987987
write(*,*) 'i = ', i
988988
write(*,'(a17, 2(1x,a4))') 'char_dummy(i-1:i) = ', char_dummy(i-1:i)
989989
end if
990-
write( lun, '("| Character |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
990+
write( lun, '("| Character |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
991991
'a12, " |", F10.6, " |" )' ) &
992992
char_size, a_name, "Sort", tdiff/rate
993993

@@ -1052,7 +1052,7 @@ subroutine test_string_sort( a, a_name, ltest )
10521052
write(*,'(a17, 2(1x,a4))') 'string_dummy(i-1:i) = ', &
10531053
string_dummy(i-1:i)
10541054
end if
1055-
write( lun, '("| String_type |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
1055+
write( lun, '("| String_type |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
10561056
'a12, " |", F10.6, " |" )' ) &
10571057
string_size, a_name, "Sort", tdiff/rate
10581058

@@ -1293,7 +1293,7 @@ subroutine test_int_sort_index( a, a_name, ltest )
12931293
write(*,*) 'i = ', i
12941294
write(*,'(a18, 2i7)') 'a(index(i-1:i)) = ', a(index(i-1:i))
12951295
end if
1296-
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
1296+
write( lun, '("| Integer |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
12971297
'a12, " |", F10.6, " |" )' ) &
12981298
test_size, a_name, "Sort_Index", tdiff/rate
12991299

@@ -1362,7 +1362,7 @@ subroutine test_char_sort_index( a, a_name, ltest )
13621362
write(*,*) 'i = ', i
13631363
write(*,'(a17, 2(1x,a4))') 'char_dummy(i-1:i) = ', char_dummy(i-1:i)
13641364
end if
1365-
write( lun, '("| Character |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
1365+
write( lun, '("| Character |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
13661366
'a12, " |", F10.6, " |" )' ) &
13671367
char_size, a_name, "Sort_Index", tdiff/rate
13681368

@@ -1416,7 +1416,7 @@ subroutine test_string_sort_index( a, a_name, ltest )
14161416
write(*,'(a17, 2(1x,a4))') 'string_dummy(i-1:i) = ', &
14171417
string_dummy(i-1:i)
14181418
end if
1419-
write( lun, '("| String_type |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
1419+
write( lun, '("| String_type |", 1x, i7, 2x, "|", 1x, a15, " |", ' // &
14201420
'a12, " |", F10.6, " |" )' ) &
14211421
string_size, a_name, "Sort_Index", tdiff/rate
14221422

0 commit comments

Comments
 (0)