aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/module_md5_1.f90
blob: 8bf9ddb1eb3f4abdaefe606401ecdf295de3696a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! Check that we can write a module file, that it has a correct MD5 sum,
! and that we can read it back.
!
! { dg-do compile }
module foo
  integer(kind=4), parameter :: pi = 3_4
end module foo

program test
  use foo
  print *, pi
end program test
! { dg-final { scan-module "foo" "MD5:1a6374d65e99c0175c42016a649f79db" } }
! { dg-final { cleanup-modules "foo" } }