mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 04:16:46 +00:00

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
39 lines
686 B
Fortran
39 lines
686 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! C1134 A CYCLE statement must be within a DO construct
|
|
!
|
|
! C1166 An EXIT statement must be within a DO construct
|
|
|
|
subroutine s1()
|
|
! this one's OK
|
|
do i = 1,10
|
|
cycle
|
|
end do
|
|
|
|
! this one's OK
|
|
do i = 1,10
|
|
exit
|
|
end do
|
|
|
|
! all of these are OK
|
|
outer: do i = 1,10
|
|
cycle
|
|
inner: do j = 1,10
|
|
cycle
|
|
end do inner
|
|
cycle
|
|
end do outer
|
|
|
|
!ERROR: No matching DO construct for CYCLE statement
|
|
cycle
|
|
|
|
!ERROR: No matching construct for EXIT statement
|
|
exit
|
|
|
|
!ERROR: No matching DO construct for CYCLE statement
|
|
if(.true.) cycle
|
|
|
|
!ERROR: No matching construct for EXIT statement
|
|
if(.true.) exit
|
|
|
|
end subroutine s1
|