allow longer argument strings to avoid failues with unit tests

This commit is contained in:
Axel Kohlmeyer
2023-06-19 15:28:27 -04:00
parent c5d9f901d9
commit af3d971023
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ PROGRAM f_driver
REAL (kind=8), ALLOCATABLE :: x(:) REAL (kind=8), ALLOCATABLE :: x(:)
REAL (kind=8), PARAMETER :: epsilon=0.1 REAL (kind=8), PARAMETER :: epsilon=0.1
CHARACTER (len=64) :: arg CHARACTER (len=1024) :: arg
CHARACTER (len=1024) :: line CHARACTER (len=1024) :: line
! setup MPI and various communicators ! setup MPI and various communicators

View File

@ -20,7 +20,7 @@
! University of Missouri, 2012-2020 ! University of Missouri, 2012-2020
! !
! Contributing authors: ! Contributing authors:
! - Axel Kohlmeyer <akohlmey@gmail.com>, Temple University, 2020-2022 ! - Axel Kohlmeyer <akohlmey@gmail.com>, Temple University, 2020-2023
! - Karl D. Hammond <hammondkd@missouri.edu>, University of Missouri, 2022 ! - Karl D. Hammond <hammondkd@missouri.edu>, University of Missouri, 2022
! !
! The Fortran module tries to follow the API of the C library interface ! The Fortran module tries to follow the API of the C library interface