File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ program help_test
15
15
! run a variety of "fpm help" variations and verify expected files are generated
16
16
character (len=* ),parameter :: cmds(* ) = [character (len= 80 ) :: &
17
17
! build manual as pieces using various help commands
18
+ ' fpm run -- --version ' ,& ! verify fpm version being used
18
19
' fpm run -- --help > fpm_scratch_help.txt' ,&
19
20
' fpm run -- help new >> fpm_scratch_help.txt' ,&
20
21
' fpm run -- build --help >> fpm_scratch_help.txt' ,&
@@ -247,8 +248,13 @@ function page(array) result (table)
247
248
if (allocated (table))deallocate (table)
248
249
! intel-bug!allocate(character(len=linelength) :: table(lines))
249
250
allocate (character (len= 132 ) :: table(lines))
251
+ ! !-----------------------------------------------------------
250
252
table= ' '
251
-
253
+ ! !possible bug in mingw. null filled instead of space padded?
254
+ do i= 1 ,lines
255
+ table(i)= repeat (' ' ,len (table))
256
+ enddo
257
+ ! !-----------------------------------------------------------
252
258
linecount= 1
253
259
position= 1
254
260
do i= 1 ,sz
You can’t perform that action at this time.
0 commit comments