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).
76 lines
2.2 KiB
Python
76 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Update reference results for static analyzer.
|
|
"""
|
|
import SATestBuild
|
|
from ProjectMap import ProjectInfo, ProjectMap
|
|
|
|
import os
|
|
import shutil
|
|
import sys
|
|
|
|
from subprocess import check_call
|
|
|
|
Verbose = 0
|
|
|
|
|
|
def update_reference_results(project: ProjectInfo, git: bool = False):
|
|
test_info = SATestBuild.TestInfo(project)
|
|
tester = SATestBuild.ProjectTester(test_info)
|
|
project_dir = tester.get_project_dir()
|
|
|
|
tester.is_reference_build = True
|
|
ref_results_path = tester.get_output_dir()
|
|
|
|
tester.is_reference_build = False
|
|
created_results_path = tester.get_output_dir()
|
|
|
|
if not os.path.exists(created_results_path):
|
|
print(
|
|
f"Skipping project '{project.name}', " f"it doesn't have newer results.",
|
|
file=sys.stderr,
|
|
)
|
|
return
|
|
|
|
build_log_path = SATestBuild.get_build_log_path(ref_results_path)
|
|
build_log_dir = os.path.dirname(os.path.abspath(build_log_path))
|
|
|
|
os.makedirs(build_log_dir)
|
|
|
|
with open(build_log_path, "w+") as build_log_file:
|
|
|
|
def run_cmd(command: str):
|
|
if Verbose:
|
|
print(f"Executing {command}")
|
|
check_call(command, shell=True, stdout=build_log_file)
|
|
|
|
# Remove reference results: in git, and then again for a good measure
|
|
# with rm, as git might not remove things fully if there are empty
|
|
# directories involved.
|
|
if git:
|
|
run_cmd(f"git rm -r -q '{ref_results_path}'")
|
|
shutil.rmtree(ref_results_path)
|
|
|
|
# Replace reference results with a freshly computed once.
|
|
shutil.copytree(created_results_path, ref_results_path, symlinks=True)
|
|
|
|
# Run cleanup script.
|
|
SATestBuild.run_cleanup_script(project_dir, build_log_file)
|
|
|
|
SATestBuild.normalize_reference_results(
|
|
project_dir, ref_results_path, project.mode
|
|
)
|
|
|
|
# Clean up the generated difference results.
|
|
SATestBuild.cleanup_reference_results(ref_results_path)
|
|
|
|
if git:
|
|
run_cmd(f"git add '{ref_results_path}'")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("SATestUpdateDiffs.py should not be used on its own.")
|
|
print("Please use 'SATest.py update' instead")
|
|
sys.exit(1)
|