Skip to content

Commit 2c633c8

Browse files
Rename module in real16 test
When the utility module had the same name in both tests, we get errors because of multiple build rules for the module. Renamed to resolve the conflict.
1 parent 80d5c67 commit 2c633c8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Fortran/UnitTests/fp_conversions/fp_convert_r16.f90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module fp_convert_m
1+
module fp_convert_r16_m
22
implicit none
33
type answer
44
integer(kind=1) :: i8
@@ -49,11 +49,11 @@ subroutine testcase(value)
4949
result = do_conversion(value)
5050
call print_answer(result)
5151
end subroutine
52-
end module fp_convert_m
52+
end module fp_convert_r16_m
5353

54-
program fp_convert
54+
program fp_convert_r16
5555
use ieee_arithmetic, only: ieee_value, ieee_quiet_nan, ieee_positive_inf, ieee_negative_inf
56-
use fp_convert_m
56+
use fp_convert_r16_m
5757
implicit none
5858

5959
real(kind=16) :: r128, nan, inf, ninf
@@ -83,4 +83,4 @@ program fp_convert
8383
print *, "nan"
8484
call testcase(nan)
8585

86-
end program fp_convert
86+
end program fp_convert_r16

0 commit comments

Comments
 (0)