cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
117 lines
2.9 KiB
Fortran
117 lines
2.9 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! Tests for F'2023 C1130:
|
|
! A variable-name that appears in a LOCAL or LOCAL_INIT locality-spec shall not
|
|
! have the ALLOCATABLE; INTENT (IN); or OPTIONAL attribute; shall not be of
|
|
! finalizable type; shall not be a nonpointer polymorphic dummy argument; and
|
|
! shall not be a coarray or an assumed-size array.
|
|
|
|
subroutine s1()
|
|
! Cannot have ALLOCATABLE variable in a LOCAL/LOCAL_INIT locality spec
|
|
integer, allocatable :: k
|
|
!ERROR: ALLOCATABLE variable 'k' not allowed in a LOCAL locality-spec
|
|
do concurrent(i=1:5) local(k)
|
|
end do
|
|
!ERROR: ALLOCATABLE variable 'k' not allowed in a LOCAL_INIT locality-spec
|
|
do concurrent(i=1:5) local_init(k)
|
|
end do
|
|
end subroutine s1
|
|
|
|
subroutine s2(arg)
|
|
! Cannot have a dummy OPTIONAL in a locality spec
|
|
integer, optional :: arg
|
|
!ERROR: OPTIONAL argument 'arg' not allowed in a locality-spec
|
|
do concurrent(i=1:5) local(arg)
|
|
end do
|
|
end subroutine s2
|
|
|
|
subroutine s3(arg)
|
|
! This is OK
|
|
real :: arg
|
|
do concurrent(i=1:5) local(arg)
|
|
end do
|
|
end subroutine s3
|
|
|
|
subroutine s4(arg)
|
|
! Cannot have a dummy INTENT(IN) in a locality spec
|
|
real, intent(in) :: arg
|
|
!ERROR: INTENT IN argument 'arg' not allowed in a locality-spec
|
|
do concurrent(i=1:5) local(arg)
|
|
end do
|
|
end subroutine s4
|
|
|
|
module m
|
|
! Cannot have a variable of a finalizable type in a LOCAL locality spec
|
|
type t1
|
|
integer :: i
|
|
contains
|
|
final :: f
|
|
end type t1
|
|
contains
|
|
subroutine s5()
|
|
type(t1) :: var
|
|
!ERROR: Finalizable variable 'var' not allowed in a LOCAL locality-spec
|
|
do concurrent(i=1:5) local(var)
|
|
end do
|
|
end subroutine s5
|
|
subroutine f(x)
|
|
type(t1) :: x
|
|
end subroutine f
|
|
end module m
|
|
|
|
subroutine s6
|
|
! Cannot have a nonpointer polymorphic dummy argument in a LOCAL locality spec
|
|
type :: t
|
|
integer :: field
|
|
end type t
|
|
contains
|
|
subroutine s(x, y)
|
|
class(t), pointer :: x
|
|
class(t) :: y
|
|
|
|
! This is allowed
|
|
do concurrent(i=1:5) local(x)
|
|
end do
|
|
|
|
! This is not allowed
|
|
!ERROR: Nonpointer polymorphic argument 'y' not allowed in a LOCAL locality-spec
|
|
do concurrent(i=1:5) local(y)
|
|
end do
|
|
end subroutine s
|
|
end subroutine s6
|
|
|
|
subroutine s7()
|
|
! Cannot have a coarray
|
|
integer, codimension[*], save :: coarray_var
|
|
!ERROR: Coarray 'coarray_var' not allowed in a LOCAL locality-spec
|
|
do concurrent(i=1:5) local(coarray_var)
|
|
end do
|
|
end subroutine s7
|
|
|
|
subroutine s8(arg)
|
|
! Cannot have an assumed size array
|
|
integer, dimension(*) :: arg
|
|
!ERROR: Assumed size array 'arg' not allowed in a locality-spec
|
|
do concurrent(i=1:5) local(arg)
|
|
end do
|
|
end subroutine s8
|
|
|
|
subroutine s9()
|
|
type l3
|
|
integer, allocatable :: a
|
|
end type
|
|
type l2
|
|
type(l3) :: l2_3
|
|
end type
|
|
type l1
|
|
type(l2) :: l1_2
|
|
end type
|
|
type(l1) :: v
|
|
integer sum
|
|
|
|
sum = 0
|
|
!ERROR: Derived type variable 'v' with ultimate ALLOCATABLE component '%l1_2%l2_3%a' not allowed in a LOCAL_INIT locality-spec
|
|
do concurrent (i = 1:10) local_init(v)
|
|
sum = sum + i
|
|
end do
|
|
end subroutine s9
|