summaryrefslogtreecommitdiff
path: root/t/t4018/fortran-comment-legacy-star
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2020-08-19 16:14:50 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2020-08-19 16:14:50 -0700
commitb350c4debe28b1df205f6127b1afe5b0168e7226 (patch)
tree1271762c7a6830559ab48726a9a99277690cacc4 /t/t4018/fortran-comment-legacy-star
parentMerge branch 'jb/commit-graph-doc-fix' (diff)
parentuserdiff: improve Fortran xfuncname regex (diff)
downloadtgif-b350c4debe28b1df205f6127b1afe5b0168e7226.tar.xz
Merge branch 'pb/userdiff-fortran-update'
The regexp to identify the function boundary for FORTRAN programs has been updated. * pb/userdiff-fortran-update: userdiff: improve Fortran xfuncname regex userdiff: add tests for Fortran xfuncname regex
Diffstat (limited to 't/t4018/fortran-comment-legacy-star')
-rw-r--r--t/t4018/fortran-comment-legacy-star13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t4018/fortran-comment-legacy-star b/t/t4018/fortran-comment-legacy-star
new file mode 100644
index 0000000000..2cbcdc3d8a
--- /dev/null
+++ b/t/t4018/fortran-comment-legacy-star
@@ -0,0 +1,13 @@
+ module a
+
+ contains
+
+* subroutine wrong
+ subroutine RIGHT
+* subroutine wrong
+
+ real ChangeMe
+
+ end subroutine RIGHT
+
+ end module a