Files
RedBear-OS/local/recipes/dev/libclc/source/flang/test/Semantics/bind-c15.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

53 lines
1.7 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic
module m
type, bind(c) :: explicit_bind_c
real a
end type
type :: interoperable1
type(explicit_bind_c) a
end type
type, extends(interoperable1) :: interoperable2
real b
end type
type :: non_interoperable1
real, allocatable :: a
end type
type :: non_interoperable2
type(non_interoperable1) b
end type
type :: no_bind_c
real a
end type
type, bind(c) :: has_bind_c
!WARNING: Derived type of component 'a' of an interoperable derived type should have the BIND attribute
type(no_bind_c) :: a
end type
interface
subroutine sub_bind_c_1(x_bind_c) bind(c)
import explicit_bind_c
type(explicit_bind_c), intent(in) :: x_bind_c
end
subroutine sub_bind_c_2(x_interop1) bind(c)
import interoperable1
!WARNING: The derived type of an interoperable object should be BIND(C)
type(interoperable1), intent(in) :: x_interop1
end
subroutine sub_bind_c_3(x_interop2) bind(c)
import interoperable2
!WARNING: The derived type of an interoperable object should be BIND(C)
type(interoperable2), intent(in) :: x_interop2
end
subroutine sub_bind_c_4(x_non_interop1) bind(c)
import non_interoperable1
!ERROR: The derived type of an interoperable object must be interoperable, but is not
type(non_interoperable1), intent(in) :: x_non_interop1
end
subroutine sub_bind_c_5(x_non_interop2) bind(c)
import non_interoperable2
!ERROR: The derived type of an interoperable object must be interoperable, but is not
type(non_interoperable2), intent(in) :: x_non_interop2
end
end interface
end