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).
104 lines
2.4 KiB
Fortran
104 lines
2.4 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
module m
|
|
public i
|
|
integer, private :: j
|
|
!ERROR: The accessibility of 'i' has already been specified as PUBLIC
|
|
private i
|
|
!WARNING: The accessibility of 'j' has already been specified as PRIVATE [-Wredundant-attribute]
|
|
private j
|
|
end
|
|
|
|
module m2
|
|
interface operator(.foo.)
|
|
module procedure ifoo
|
|
end interface
|
|
public :: operator(.foo.)
|
|
!ERROR: The accessibility of 'OPERATOR(.foo.)' has already been specified as PUBLIC
|
|
private :: operator(.foo.)
|
|
interface operator(+)
|
|
module procedure ifoo
|
|
end interface
|
|
public :: operator(+)
|
|
!ERROR: The accessibility of 'OPERATOR(+)' has already been specified as PUBLIC
|
|
private :: operator(+) , ifoo
|
|
contains
|
|
integer function ifoo(x, y)
|
|
logical, intent(in) :: x, y
|
|
end
|
|
end module
|
|
|
|
module m3
|
|
type t
|
|
end type
|
|
private :: operator(.lt.)
|
|
interface operator(<)
|
|
logical function lt(x, y)
|
|
import t
|
|
type(t), intent(in) :: x, y
|
|
end function
|
|
end interface
|
|
!ERROR: The accessibility of 'OPERATOR(<)' has already been specified as PRIVATE
|
|
public :: operator(<)
|
|
interface operator(.gt.)
|
|
logical function gt(x, y)
|
|
import t
|
|
type(t), intent(in) :: x, y
|
|
end function
|
|
end interface
|
|
public :: operator(>)
|
|
!ERROR: The accessibility of 'OPERATOR(.GT.)' has already been specified as PUBLIC
|
|
private :: operator(.gt.)
|
|
end
|
|
|
|
module m4
|
|
private
|
|
type, public :: foo
|
|
end type
|
|
interface foo
|
|
procedure fun
|
|
end interface
|
|
contains
|
|
function fun
|
|
end
|
|
end
|
|
|
|
subroutine s4
|
|
!ERROR: 'fun' is PRIVATE in 'm4'
|
|
use m4, only: foo, fun
|
|
type(foo) x ! ok
|
|
!PORTABILITY: Reference to generic function 'foo' (resolving to specific 'fun') is ambiguous with a structure constructor of the same name [-Wambiguous-structure-constructor]
|
|
print *, foo()
|
|
end
|
|
|
|
module m5
|
|
public
|
|
type, private :: foo
|
|
end type
|
|
interface foo
|
|
procedure fun
|
|
end interface
|
|
contains
|
|
function fun
|
|
end
|
|
end
|
|
|
|
subroutine s5
|
|
!ERROR: 'foo' is PRIVATE in 'm5'
|
|
use m5, only: foo, fun
|
|
print *, fun() ! ok
|
|
end
|
|
|
|
module m6
|
|
!WARNING: 'foo' is PRIVATE in 'm5'
|
|
use m5, only: name$with$dollar => foo
|
|
!ERROR: 'foo' is PRIVATE in 'm5'
|
|
use m5, only: normal_name => foo
|
|
end
|
|
|
|
subroutine s6
|
|
!The special dispensation for USE association of private names to local
|
|
!aliases with '$' in them only applies to modules.
|
|
!ERROR: 'foo' is PRIVATE in 'm5'
|
|
use m5, only: name$with$dollar => foo
|
|
end
|