Files
RedBear-OS/local/recipes/dev/libclc/source/flang/test/Semantics/bug132435.f90
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
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).
2026-08-01 05:13:02 +03:00

86 lines
1.2 KiB
Fortran

! RUN: %python %S/test_modfile.py %s %flang_fc1
module m1
type foo
integer :: c1 = 123
end type
end
module m2
use m1, only: foo
type baz
type(foo) :: d = foo()
end type
type bar
type(baz) :: e = baz()
end type
end
module m3
use m1, only: m1foo => foo
type foo
type(m1foo), private :: c2 = m1foo()
end type
end
module m4
use m2, only: m3foo => foo
type foo
type(m3foo), private :: c3 = m3foo()
end type
end
module m5
use m2, only: m2bar => bar
use m4, only: foo
type blah
type(m2bar) :: f = m2bar()
end type
end
!Expect: m1.mod
!module m1
!type::foo
!integer(4)::c1=123_4
!end type
!end
!Expect: m2.mod
!module m2
!use m1,only:foo
!type::baz
!type(foo)::d=foo(c1=123_4)
!end type
!type::bar
!type(baz)::e=baz(d=foo(c1=123_4))
!end type
!end
!Expect: m3.mod
!module m3
!use m1,only:m1foo=>foo
!type::foo
!type(m1foo),private::c2=m1foo(c1=123_4)
!end type
!end
!Expect: m4.mod
!module m4
!use m2,only:m3foo=>foo
!type::foo
!type(m3foo),private::c3=m3foo(c1=123_4)
!end type
!end
!Expect: m5.mod
!module m5
!use m2,only:m2$foo=>foo
!use m2,only:baz
!use m2,only:m2bar=>bar
!use m4,only:foo
!private::m2$foo
!private::baz
!type::blah
!type(m2bar)::f=m2bar(e=baz(d=m2$foo(c1=123_4)))
!end type
!end