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).
53 lines
902 B
Fortran
53 lines
902 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! Test section subscript
|
|
subroutine p1
|
|
real :: a(10,10)
|
|
real :: b(5,5)
|
|
real :: c
|
|
integer :: n
|
|
n = 2
|
|
b = a(1:10:n,1:n+3)
|
|
end
|
|
|
|
! Test substring
|
|
subroutine p2
|
|
type t1(n1,n2)
|
|
integer,kind :: n1,n2
|
|
integer :: c2(iachar('ABCDEFGHIJ'(n1:n1)))
|
|
end type
|
|
character :: a(10)
|
|
character :: b(5)
|
|
character :: c(0)
|
|
integer :: n
|
|
n = 3
|
|
b = a(n:7)
|
|
b = a(n+3:)
|
|
b = a(:n+2)
|
|
a(n:7) = b
|
|
a(n+3:) = b
|
|
a(:n+2) = b
|
|
n = iachar(1_'ABCDEFGHIJ'(1:1))
|
|
c = 'ABCDEFGHIJ'(1:0)
|
|
end
|
|
|
|
! Test pointer assignment with bounds
|
|
subroutine p3
|
|
integer, pointer :: a(:,:)
|
|
integer, target :: b(2,2)
|
|
integer :: n
|
|
n = 2
|
|
a(n:,n:) => b
|
|
a(1:n,1:n) => b
|
|
end
|
|
|
|
! Test pointer assignment to array element
|
|
subroutine p4
|
|
type :: t
|
|
real, pointer :: a
|
|
end type
|
|
type(t) :: x(10)
|
|
integer :: i
|
|
real, target :: y
|
|
x(i)%a => y
|
|
end subroutine
|