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).
54 lines
1.4 KiB
Fortran
54 lines
1.4 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! %VAL en %REF legacy extension semantic tests.
|
|
|
|
subroutine val_errors(array, string, polymorphic, derived)
|
|
type t
|
|
integer :: t
|
|
end type
|
|
integer :: array(10)
|
|
character(*) :: string
|
|
type(t) :: derived
|
|
type(*) :: polymorphic
|
|
interface
|
|
subroutine foo5(a)
|
|
integer a(:)
|
|
end
|
|
end interface
|
|
!ERROR: %VAL argument must be a scalar numeric or logical expression
|
|
call foo1(%val(array))
|
|
!ERROR: %VAL argument must be a scalar numeric or logical expression
|
|
call foo2(%val(string))
|
|
!ERROR: %VAL argument must be a scalar numeric or logical expression
|
|
call foo3(%val(derived))
|
|
!ERROR: Assumed type actual argument requires an explicit interface
|
|
!ERROR: %VAL argument must be a scalar numeric or logical expression
|
|
call foo4(%val(polymorphic))
|
|
!ERROR: %VAL or %REF are not allowed for dummy argument 'a=' that must be passed by means of a descriptor
|
|
call foo5(%ref(array))
|
|
end subroutine
|
|
|
|
subroutine val_ok()
|
|
integer :: array(10)
|
|
real :: x
|
|
logical :: l
|
|
complex :: c
|
|
call ok1(%val(array(1)))
|
|
call ok2(%val(x))
|
|
call ok3(%val(l))
|
|
call ok4(%val(c))
|
|
call ok5(%val(42))
|
|
call ok6(%val(x+x))
|
|
end subroutine
|
|
|
|
subroutine ref_ok(array, string, derived)
|
|
type t
|
|
integer :: t
|
|
end type
|
|
integer :: array(10)
|
|
character(*) :: string
|
|
type(t) :: derived
|
|
call rok1(%ref(array))
|
|
call rok2(%ref(string))
|
|
call rok3(%ref(derived))
|
|
end subroutine
|