Index: flang/test/Semantics/collectives04.f90 =================================================================== --- /dev/null +++ flang/test/Semantics/collectives04.f90 @@ -0,0 +1,52 @@ +! RUN: %python %S/test_errors.py %s %flang_fc1 +! XFAIL: * +! Check for semantic errors in co_broadcast() subroutine calls +! To Do: add co_broadcast to the evaluation stage + +module test_co_broadcast + implicit none + +contains + + subroutine test + + type foo_t + end type + + type(foo_t) foo + type(foo_t) bar(1,1) + integer i, status + real vector(1) + real array(1,1,1, 1,1,1, 1,1,1, 1,1,1, 1,1,1) + character(len=1) string, message + + ! correct calls, should produce no errors + call co_broadcast(i, 1) + call co_broadcast(i, 1, status) + call co_broadcast(i, 1, stat=status) + call co_broadcast(i, 1, errmsg=message) + call co_broadcast(i, 1, stat=status, errmsg=message) + call co_broadcast(i, source_image=1, stat=status, errmsg=message) + call co_broadcast(a=i, source_image=1, stat=status, errmsg=message) + + call co_broadcast(array, source_image=1, stat=status, errmsg=message) + call co_broadcast(vector, source_image=1, stat=status, errmsg=message) + call co_broadcast(string, source_image=1, stat=status, errmsg=message) + call co_broadcast(foo, source_image=1, stat=status, errmsg=message) + call co_broadcast(bar, source_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_broadcast(i, 1, message) + + ! the error is seen as too many arguments to the co_broadcast() call + !ERROR: too many actual arguments for intrinsic 'co_broadcast' + call co_broadcast(i, source_image=1, stat=status, errmsg=message, 3.4) + + ! keyword argument with incorrect type + !ERROR: unknown keyword argument to intrinsic 'co_broadcast' + call co_broadcast(fake=3.4) + + end subroutine + +end module test_co_broadcast