We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following test will currently fail (tested with Intel Fortran):
subroutine test_string_i8(error) use stdlib_kinds, only : i8 => int64 use stdlib_strings, only : to_string !> Error handling type(error_type), allocatable, intent(out) :: error call check(error, to_string(-huge(1_i8) - 1_i8), "-9223372036854775808") end subroutine test_string_i8
Fails due to abs at
abs
stdlib/src/stdlib_strings_to_string.fypp
Line 60 in f98f3d3
Correctly serialize -huge(1)-1.
-huge(1)-1
0.2.0, f98f3d3
any
Found when adopting to_string in TOML Fortran: toml-f/toml-f@d3ffce6 (#93) Potential fix in fortran-lang/test-drive#21
to_string
d3ffce6
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Description
The following test will currently fail (tested with Intel Fortran):
Fails due to
abs
atstdlib/src/stdlib_strings_to_string.fypp
Line 60 in f98f3d3
Expected Behaviour
Correctly serialize
-huge(1)-1
.Version of stdlib
0.2.0, f98f3d3
Platform and Architecture
any
Additional Information
Found when adopting
to_string
in TOML Fortran: toml-f/toml-f@d3ffce6
(#93)Potential fix in fortran-lang/test-drive#21
The text was updated successfully, but these errors were encountered: