summaryrefslogtreecommitdiffstats
path: root/Tests/Fortran/hello.f
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-10-23 12:24:51 (GMT)
committerBrad King <brad.king@kitware.com>2009-10-23 12:24:51 (GMT)
commiteb3d02e35121fc91b8a70eafcf9a4a55c3eb59a0 (patch)
treefe94c595174e1f32c6342a3f30914296c48f7dba /Tests/Fortran/hello.f
parent867a1cc12c9212b286efce0647a510486501c1a5 (diff)
downloadCMake-eb3d02e35121fc91b8a70eafcf9a4a55c3eb59a0.zip
CMake-eb3d02e35121fc91b8a70eafcf9a4a55c3eb59a0.tar.gz
CMake-eb3d02e35121fc91b8a70eafcf9a4a55c3eb59a0.tar.bz2
Test all target types in Fortran
This teaches the Fortran test to try all basic target types (archive, shared lib, exe) with Fortran-only sources.
Diffstat (limited to 'Tests/Fortran/hello.f')
-rw-r--r--Tests/Fortran/hello.f4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Fortran/hello.f b/Tests/Fortran/hello.f
index c9ee3c2..aa0de77 100644
--- a/Tests/Fortran/hello.f
+++ b/Tests/Fortran/hello.f
@@ -1,6 +1,6 @@
- PROGRAM GREETINGS
+ SUBROUTINE HELLO
- PRINT *, 'Real programmers write Fortran!'
+ PRINT *, 'Hello'
END