Daily bump.
[official-gcc.git] / gcc / testsuite / gfortran.dg / module_md5_1.f90
blobb9bb5fa1eb6697b2d329e8980f2bf05ee0cbca75
1 ! Check that we can write a module file, that it has a correct MD5 sum,
2 ! and that we can read it back.
4 ! { dg-do compile }
5 module foo
6 integer(kind=4), parameter :: pi = 3_4
7 end module foo
9 program test
10 use foo
11 print *, pi
12 end program test
13 ! { dg-final { scan-module "foo" "MD5:2350094d1d87eb25ab22af5f8e96e011" } }
14 ! { dg-final { cleanup-modules "foo" } }