summaryrefslogtreecommitdiffstats
path: root/fortran/test/tH5D.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2023-10-19 21:40:08 (GMT)
committerGitHub <noreply@github.com>2023-10-19 21:40:08 (GMT)
commit5672fd817732e6a7fda3886010452bc7c8598cf8 (patch)
treeb03635041dd808e3b1565b5c53ec373e377cbcba /fortran/test/tH5D.F90
parent8c69566da66e9239bbcd84b10e60068ade6c1784 (diff)
downloadhdf5-5672fd817732e6a7fda3886010452bc7c8598cf8.zip
hdf5-5672fd817732e6a7fda3886010452bc7c8598cf8.tar.gz
hdf5-5672fd817732e6a7fda3886010452bc7c8598cf8.tar.bz2
Attempt to quiet some warnings with cray compilers. (#3724)
Diffstat (limited to 'fortran/test/tH5D.F90')
-rw-r--r--fortran/test/tH5D.F908
1 files changed, 1 insertions, 7 deletions
diff --git a/fortran/test/tH5D.F90 b/fortran/test/tH5D.F90
index c381235..fc77414 100644
--- a/fortran/test/tH5D.F90
+++ b/fortran/test/tH5D.F90
@@ -38,6 +38,7 @@ MODULE TH5D
USE HDF5 ! This module contains all necessary modules
USE TH5_MISC
USE TH5_MISC_GEN
+ USE ISO_C_BINDING
CONTAINS
SUBROUTINE datasettest(cleanup, total_error)
@@ -514,8 +515,6 @@ CONTAINS
SUBROUTINE test_userblock_offset(cleanup, total_error)
- USE ISO_C_BINDING
-
IMPLICIT NONE
LOGICAL, INTENT(IN) :: cleanup
INTEGER, INTENT(OUT) :: total_error
@@ -631,8 +630,6 @@ CONTAINS
SUBROUTINE test_dset_fill(cleanup, total_error)
- USE ISO_C_BINDING
-
IMPLICIT NONE
LOGICAL, INTENT(IN) :: cleanup
INTEGER, INTENT(OUT) :: total_error
@@ -640,7 +637,6 @@ CONTAINS
INTEGER, PARAMETER :: DIM0=10
INTEGER, PARAMETER :: int_kind_1 = SELECTED_INT_KIND(2) !should map to INTEGER*1 on most modern processors
INTEGER, PARAMETER :: int_kind_4 = SELECTED_INT_KIND(4) !should map to INTEGER*2 on most modern processors
- INTEGER, PARAMETER :: int_kind_8 = SELECTED_INT_KIND(9) !should map to INTEGER*4 on most modern processors
INTEGER, PARAMETER :: int_kind_16 = SELECTED_INT_KIND(18) !should map to INTEGER*8 on most modern processors
INTEGER(KIND=int_kind_1) , DIMENSION(1:DIM0), TARGET :: data_i1
INTEGER(KIND=int_kind_4) , DIMENSION(1:DIM0), TARGET :: data_i4
@@ -991,8 +987,6 @@ CONTAINS
SUBROUTINE test_direct_chunk_io(cleanup, total_error)
- USE ISO_C_BINDING
-
IMPLICIT NONE
LOGICAL, INTENT(IN) :: cleanup