[geany/geany] f02b70: tests: Add a missing test file (oops)

Colomban Wendling git-noreply at xxxxx
Tue Jun 25 13:06:16 UTC 2013


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Tue, 25 Jun 2013 13:06:16 UTC
Commit:      f02b70949adf2659ebc833a2c8075595a7625ff3
             https://github.com/geany/geany/commit/f02b70949adf2659ebc833a2c8075595a7625ff3

Log Message:
-----------
tests: Add a missing test file (oops)

I forgot to add the files in 32074064ab91104d7bdfbb5dc0dcd97faf7f7f11,
oops.


Modified Paths:
--------------
    tests/ctags/procedure_pointer_module.f90
    tests/ctags/procedure_pointer_module.f90.tags

Modified: tests/ctags/procedure_pointer_module.f90
19 files changed, 19 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,19 @@
+! a module that uses procedure pointer
+module proc_pointer
+
+  real :: a
+  procedure(sub), pointer :: my_pointer
+
+contains
+
+  subroutine sub(x)
+    real, intent(inout) :: x(:)
+
+    integer :: i
+
+    do i=1,size(x)
+       x(i) = 0.5**i
+    end do
+  end subroutine sub
+
+end module proc_pointer


Modified: tests/ctags/procedure_pointer_module.f90.tags
5 files changed, 5 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,5 @@
+# format=tagmanager
+a�16384�proc_pointer�0
+my_pointer�16384�proc_pointer�0
+proc_pointer�256�0
+sub�64�proc_pointer�0



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list