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).
86 lines
1.4 KiB
Fortran
86 lines
1.4 KiB
Fortran
! RUN: %python %S/test_modfile.py %s %flang_fc1
|
|
! Verify miscellaneous bugs
|
|
|
|
! The function result must be declared after the dummy arguments
|
|
module m1
|
|
contains
|
|
function f1(x) result(y)
|
|
integer :: x(:)
|
|
integer :: y(size(x))
|
|
end
|
|
function f2(x)
|
|
integer :: x(:)
|
|
integer :: f2(size(x))
|
|
end
|
|
end
|
|
|
|
!Expect: m1.mod
|
|
!module m1
|
|
!contains
|
|
! function f1(x) result(y)
|
|
! integer(4)::x(:)
|
|
! integer(4)::y(1_8:size(x,dim=1,kind=8))
|
|
! end
|
|
! function f2(x)
|
|
! integer(4)::x(:)
|
|
! integer(4)::f2(1_8:size(x,dim=1,kind=8))
|
|
! end
|
|
!end
|
|
|
|
! Order of names in PUBLIC statement shouldn't affect .mod file.
|
|
module m2
|
|
public :: a
|
|
type t
|
|
end type
|
|
type(t), parameter :: a = t()
|
|
end
|
|
|
|
!Expect: m2.mod
|
|
!module m2
|
|
! type::t
|
|
! end type
|
|
! type(t),parameter::a=t()
|
|
!end
|
|
|
|
module m3a
|
|
integer, parameter :: i4 = selected_int_kind(9)
|
|
end
|
|
module m3b
|
|
use m3a
|
|
integer(i4) :: j
|
|
end
|
|
|
|
!Expect: m3a.mod
|
|
!module m3a
|
|
! integer(4),parameter::i4=4_4
|
|
! intrinsic::selected_int_kind
|
|
!end
|
|
|
|
!Expect: m3b.mod
|
|
!module m3b
|
|
! use m3a,only:i4
|
|
! integer(4)::j
|
|
!end
|
|
|
|
! Test that character literals written with backslash escapes are read correctly.
|
|
module m4a
|
|
character(1), parameter :: a = achar(1)
|
|
end
|
|
module m4b
|
|
use m4a
|
|
character(1), parameter :: b = a
|
|
end
|
|
|
|
!Expect: m4a.mod
|
|
!module m4a
|
|
! character(1_4,1),parameter::a="\001"
|
|
! intrinsic::achar
|
|
!end
|
|
|
|
!Expect: m4b.mod
|
|
!module m4b
|
|
! use m4a,only:a
|
|
! character(1_4,1),parameter::b="\001"
|
|
!end
|
|
|