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

116 lines
4.8 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! This test checks for semantic errors in atomic_xor subroutine calls based on
! the interface defined in section 16.9.30 of the Fortran 2018 standard.
program test_atomic_xor
use iso_fortran_env, only: atomic_int_kind, atomic_logical_kind
implicit none(external, type)
integer(kind=atomic_int_kind) :: scalar_coarray[*], non_scalar_coarray(10)[*], val, non_coarray
integer(kind=atomic_int_kind) :: repeated_atom[*], repeated_val, array(10)
integer :: status, default_kind_coarray[*], coindexed_status[*], extra_arg, repeated_status, status_array(10)
integer(kind=1) :: kind1_coarray[*]
real :: non_integer_coarray[*]
logical :: non_integer
logical(atomic_logical_kind) :: atomic_logical[*]
!___ standard-conforming calls ___
call atomic_xor(scalar_coarray, val)
call atomic_xor(scalar_coarray[1], val)
call atomic_xor(scalar_coarray, val, status)
call atomic_xor(scalar_coarray[1], val, status)
call atomic_xor(scalar_coarray, val, stat=status)
call atomic_xor(scalar_coarray, value=val, stat=status)
call atomic_xor(atom=scalar_coarray, value=val)
call atomic_xor(atom=scalar_coarray, value=val, stat=status)
call atomic_xor(stat=status, value=val, atom=scalar_coarray)
!___ non-standard-conforming calls ___
!ERROR: 'atom=' argument must be a scalar coarray or coindexed object for intrinsic 'atomic_xor'
call atomic_xor(non_scalar_coarray, val)
!ERROR: 'atom=' argument must be a scalar coarray or coindexed object for intrinsic 'atomic_xor'
call atomic_xor(non_scalar_coarray(:)[1], val)
!ERROR: 'atom=' argument must be a scalar coarray or coindexed object for intrinsic 'atomic_xor'
call atomic_xor(non_coarray, val)
!ERROR: 'atom=' argument must be a scalar coarray or coindexed object for intrinsic 'atomic_xor'
call atomic_xor(array, val)
!ERROR: Actual argument for 'atom=' must have kind=atomic_int_kind, but is 'INTEGER(4)'
call atomic_xor(default_kind_coarray, val)
!ERROR: Actual argument for 'atom=' must have kind=atomic_int_kind, but is 'INTEGER(1)'
call atomic_xor(kind1_coarray, val)
!ERROR: Actual argument for 'atom=' has bad type 'REAL(4)'
call atomic_xor(non_integer_coarray, val)
!ERROR: Actual argument for 'atom=' has bad type 'LOGICAL(8)'
call atomic_xor(atomic_logical, val)
!ERROR: 'value=' argument has unacceptable rank 1
call atomic_xor(scalar_coarray, array)
!ERROR: Actual argument for 'value=' has bad type 'LOGICAL(4)'
call atomic_xor(scalar_coarray, non_integer)
!ERROR: Actual argument for 'stat=' has bad type 'LOGICAL(4)'
call atomic_xor(scalar_coarray, val, non_integer)
!ERROR: 'stat=' argument has unacceptable rank 1
call atomic_xor(scalar_coarray, val, status_array)
!ERROR: 'stat' argument to 'atomic_xor' may not be a coindexed object
call atomic_xor(scalar_coarray, val, coindexed_status[1])
!ERROR: Actual argument associated with INTENT(OUT) dummy argument 'stat=' is not definable
!BECAUSE: '1_4' is not a variable or pointer
call atomic_xor(scalar_coarray, val, 1)
!ERROR: missing mandatory 'atom=' argument
call atomic_xor()
!ERROR: missing mandatory 'atom=' argument
call atomic_xor(value=val, stat=status)
!ERROR: missing mandatory 'value=' argument
call atomic_xor(scalar_coarray)
!ERROR: missing mandatory 'value=' argument
call atomic_xor(atom=scalar_coarray, stat=status)
!ERROR: too many actual arguments for intrinsic 'atomic_xor'
call atomic_xor(scalar_coarray, val, status, extra_arg)
!ERROR: repeated keyword argument to intrinsic 'atomic_xor'
call atomic_xor(atom=scalar_coarray, atom=repeated_atom, value=val, stat=status)
!ERROR: repeated keyword argument to intrinsic 'atomic_xor'
call atomic_xor(atom=scalar_coarray, value=val, value=repeated_val, stat=status)
!ERROR: repeated keyword argument to intrinsic 'atomic_xor'
call atomic_xor(atom=scalar_coarray, value=val, stat=status, stat=repeated_status)
!ERROR: unknown keyword argument to intrinsic 'atomic_xor'
call atomic_xor(atomic=scalar_coarray, value=val, stat=status)
!ERROR: unknown keyword argument to intrinsic 'atomic_xor'
call atomic_xor(atom=scalar_coarray, values=val, stat=status)
!ERROR: unknown keyword argument to intrinsic 'atomic_xor'
call atomic_xor(atom=scalar_coarray, value=val, status=status)
!ERROR: keyword argument to intrinsic 'atomic_xor' was supplied positionally by an earlier actual argument
call atomic_xor(scalar_coarray, val, atom=repeated_atom)
!ERROR: keyword argument to intrinsic 'atomic_xor' was supplied positionally by an earlier actual argument
call atomic_xor(scalar_coarray, val, value=repeated_val)
!ERROR: keyword argument to intrinsic 'atomic_xor' was supplied positionally by an earlier actual argument
call atomic_xor(scalar_coarray, val, status, stat=repeated_status)
end program test_atomic_xor