diff options
author | Brad King <brad.king@kitware.com> | 2016-09-22 18:23:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-22 18:52:01 (GMT) |
commit | eb8cd35684f2dc2f53d205d7738e1c01a12a493f (patch) | |
tree | 77732180392bf2da1fe0aa6facd25c9fe95e6614 /Tests/Fortran/in_interface | |
parent | a41c8724d155f1cd74ce36cdfbd10da0eac5b389 (diff) | |
download | CMake-eb8cd35684f2dc2f53d205d7738e1c01a12a493f.zip CMake-eb8cd35684f2dc2f53d205d7738e1c01a12a493f.tar.gz CMake-eb8cd35684f2dc2f53d205d7738e1c01a12a493f.tar.bz2 |
Tests: Split Fortran module testing into separate FortranModules test
The main Fortran test is not granular enough. Split some into another
test.
Diffstat (limited to 'Tests/Fortran/in_interface')
-rw-r--r-- | Tests/Fortran/in_interface/main.f90 | 3 | ||||
-rw-r--r-- | Tests/Fortran/in_interface/module.f90 | 12 |
2 files changed, 0 insertions, 15 deletions
diff --git a/Tests/Fortran/in_interface/main.f90 b/Tests/Fortran/in_interface/main.f90 deleted file mode 100644 index 28bcf36..0000000 --- a/Tests/Fortran/in_interface/main.f90 +++ /dev/null @@ -1,3 +0,0 @@ -program hello - use test_interface -end program hello diff --git a/Tests/Fortran/in_interface/module.f90 b/Tests/Fortran/in_interface/module.f90 deleted file mode 100644 index 1064d74..0000000 --- a/Tests/Fortran/in_interface/module.f90 +++ /dev/null @@ -1,12 +0,0 @@ -module test_interface - - interface dummy - module procedure module_function - end interface - -contains - - subroutine module_function - end subroutine - -end module test_interface
\ No newline at end of file |