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).
27 lines
1.2 KiB
Fortran
27 lines
1.2 KiB
Fortran
! Test the behaviour of the driver when input is missing or is invalid. Note
|
|
! that with the compiler driver (flang), the input _has_ to be specified.
|
|
! Indeed, the driver decides what "job/command" to create based on the input
|
|
! file's extension. No input file means that it doesn't know what to do
|
|
! (compile? preprocess? link?). The frontend driver (flang -fc1) simply
|
|
! assumes that "no explicit input == read from stdin"
|
|
|
|
!--------------------------
|
|
! FLANG DRIVER (flang)
|
|
!--------------------------
|
|
! RUN: not %flang 2>&1 | FileCheck %s --check-prefix=FLANG-NO-FILE
|
|
! RUN: not %flang %t.f90 2>&1 | FileCheck %s --check-prefix=FLANG-NONEXISTENT-FILE
|
|
|
|
!-----------------------------------------
|
|
! FLANG FRONTEND DRIVER (flang -fc1)
|
|
!-----------------------------------------
|
|
! RUN: not %flang_fc1 %t.f90 2>&1 | FileCheck %s --check-prefix=FLANG-FC1-NONEXISTENT-FILE
|
|
! RUN: not %flang_fc1 %S 2>&1 | FileCheck %s --check-prefix=FLANG-FC1-DIR
|
|
|
|
! FLANG-NO-FILE: flang{{.*}}: error: no input files
|
|
|
|
! FLANG-NONEXISTENT-FILE: flang{{.*}}: error: no such file or directory: {{.*}}
|
|
! FLANG-NONEXISTENT-FILE: flang{{.*}}: error: no input files
|
|
|
|
! FLANG-FC1-NONEXISTENT-FILE: error: {{.*}} does not exist
|
|
! FLANG-FC1-DIR: error: {{.*}} is not a regular file
|