summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-03-28 18:04:52 (GMT)
committerBrad King <brad.king@kitware.com>2008-03-28 18:04:52 (GMT)
commit71d292d087cb947c5d85772cbcc5a21f665716d8 (patch)
tree30c3c1f6512140c00b9b16c3f2b2eaef44318950
parentd71c6ba49a4e44d4c93ffbefc597d4d7c5aef183 (diff)
downloadCMake-71d292d087cb947c5d85772cbcc5a21f665716d8.zip
CMake-71d292d087cb947c5d85772cbcc5a21f665716d8.tar.gz
CMake-71d292d087cb947c5d85772cbcc5a21f665716d8.tar.bz2
BUG: Fix Fortran test to use more portable comment syntax in fixed format source.
-rw-r--r--Tests/Fortran/test_use_in_comment_fixedform.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Fortran/test_use_in_comment_fixedform.f b/Tests/Fortran/test_use_in_comment_fixedform.f
index e670939..39f486b 100644
--- a/Tests/Fortran/test_use_in_comment_fixedform.f
+++ b/Tests/Fortran/test_use_in_comment_fixedform.f
@@ -1,7 +1,7 @@
PROGRAM foo
-C USE bar
-C use bar
-C Use bar
+! USE bar
+! use bar
+! Use bar
WRITE(*,*) 'Hello, Fortran world.'
END PROGRAM