File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,6 @@ module fpm_command_line
91
91
character (len= :),allocatable :: args
92
92
character (len= :),allocatable :: runner
93
93
logical :: example
94
- contains
95
- procedure :: runner_command
96
94
end type
97
95
98
96
type, extends(fpm_run_settings) :: fpm_test_settings
@@ -1432,21 +1430,4 @@ function get_fpm_env(env, default) result(val)
1432
1430
val = get_env(fpm_prefix// env, default)
1433
1431
end function get_fpm_env
1434
1432
1435
- ! > Build a full runner command (executable + command-line arguments)
1436
- function runner_command (cmd ) result(run_cmd)
1437
- class(fpm_run_settings), intent (in ) :: cmd
1438
- character (len= :), allocatable :: run_cmd
1439
-
1440
- ! > Get executable
1441
- if (len_trim (cmd% runner)>0 ) then
1442
- run_cmd = trim (cmd% runner)
1443
- else
1444
- run_cmd = ' '
1445
- end if
1446
-
1447
- ! > Append command-line arguments
1448
- if (len_trim (cmd% runner_args)>0 ) run_cmd = run_cmd// ' ' // trim (cmd% runner_args)
1449
-
1450
- end function runner_command
1451
-
1452
1433
end module fpm_command_line
You can’t perform that action at this time.
0 commit comments