[flang-commits] [PATCH] D113076: [flang] Add a semantics test for co_sum
Damian Rouson via Phabricator via flang-commits
flang-commits at lists.llvm.org
Tue Nov 2 19:11:53 PDT 2021
rouson created this revision.
rouson added reviewers: ktras, craig.rasmussen, pmccormick.
Herald added a reviewer: sscalpone.
Herald added a project: Flang.
rouson requested review of this revision.
Herald added a subscriber: jdoerfert.
Herald added a project: LLVM.
This patch checks for valid and invalid forms of calls to the collective subroutine co_sum.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D113076
Files:
flang/test/Semantics/collectives01.f90
Index: flang/test/Semantics/collectives01.f90
===================================================================
--- /dev/null
+++ flang/test/Semantics/collectives01.f90
@@ -0,0 +1,45 @@
+! RUN: %S/test_errors.sh %s %t %flang_fc1
+! REQUIRES: shell
+! Check for semantic errors in co_sum() function calls
+
+module test_co_sum
+ implicit none
+
+contains
+
+ subroutine test
+
+ integer i, status
+ real array(1)
+ complex z(1,1,1, 1,1,1, 1,1,1, 1,1,1, 1,1,1)
+ character(len=1) message
+
+ ! correct calls, should produce no errors
+ call co_sum(i)
+ call co_sum(i, 1)
+ call co_sum(i, 1, status)
+ call co_sum(i, 1, stat=status)
+ call co_sum(i, 1, errmsg=message)
+ call co_sum(i, 1, stat=status, errmsg=message)
+ call co_sum(i, result_image=1, stat=status, errmsg=message)
+ call co_sum(a=i, result_image=1, stat=status, errmsg=message)
+ call co_sum(i, result_image=1, stat=status, errmsg=message)
+
+ call co_sum(array, result_image=1, stat=status, errmsg=message)
+ call co_sum(z, result_image=1, stat=status, errmsg=message)
+
+ ! the error is seen as an incorrect type for the stat= argument
+ !ERROR: Actual argument for ‘stat=’ has bad type ‘CHARACTER(KIND=1,LEN=1_8)’
+ call co_sum(i, 1, message)
+
+ ! the error is seen as too many arguments to the co_sum() call
+ !ERROR: too many actual arguments for collective subroutines 'co_sum'
+ call co_sum(i, result_image=1, stat=status, errmsg=message, 3.4)
+
+ ! keyword argument with incorrect type
+ !ERROR: unknown keyword argument to intrinsic 'co_sum'
+ call co_sum(fake=3.4)
+
+ end subroutine
+
+end module test_co_sum
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113076.384301.patch
Type: text/x-patch
Size: 1766 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20211103/9bf26391/attachment.bin>
More information about the flang-commits
mailing list