loadtxt: increase length of internal buffers #893
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
loadtxt
keeps failing often in the CI tests, see e.g. here or #862 .Ifort output is:
So we can infer:
output statement
-> Writing to somethingunit -5
-> Writing to an internal unit = a character stringoverflows record
-> record is too short -> string is too short.I believe the error may be triggered in one of these statements:
stdlib/src/stdlib_io.fypp
Line 148 in 7511064
With a long file name (many sub-folders), it is possible that the output message exceeds 128 characters.
In other words, some other error has occurred, but the second error hides the root cause. This PR attempts to fix the second error (insufficient internal string length), that will hopefully help us understand why the example program sometimes fails.
cc: @fortran-lang/stdlib @jvdp1 @jalvesz