Files
clang-p2996/flang/test/Semantics/omp-workshare03.f90
Ivan Zhechev 6c1ac141d3 [Flang] Ported test_errors.sh to Python
To enable Flang testing on Windows, shell scripts have to be ported to Python. In this patch the "test_errors.sh" script is ported to python ("test_errors.py"). The RUN line of existing tests was changed to make use of the python script.

Used python regex in place of awk/sed.

Reviewed By: Meinersbur

Differential Revision: https://reviews.llvm.org/D107575
2021-09-06 08:19:42 +00:00

33 lines
746 B
Fortran

! RUN: %python %S/test_errors.py %s %flang -fopenmp
! OpenMP Version 4.5
! 2.7.4 workshare Construct
! All array assignments, scalar assignments, and masked array assignments
! must be intrinsic assignments.
module defined_assign
interface assignment(=)
module procedure work_assign
end interface
contains
subroutine work_assign(a,b)
integer, intent(out) :: a
logical, intent(in) :: b(:)
end subroutine work_assign
end module defined_assign
program omp_workshare
use defined_assign
integer :: a, aa(10), bb(10)
logical :: l(10)
l = .TRUE.
!$omp workshare
!ERROR: Defined assignment statement is not allowed in a WORKSHARE construct
a = l
aa = bb
!$omp end workshare
end program omp_workshare