mirror of
https://gitlab.freedesktop.org/emersion/libdisplay-info.git
synced 2024-11-16 19:48:30 +01:00
eed3e1e0f8
by storing the reference edid-decode output in the repository. It is now only a dependency for the gen-test-data target. The CI checks that the reference output in the repository matches the one generated from a specific checkout of edid-decode. Signed-off-by: Sebastian Wick <sebastian.wick@redhat.com>
27 lines
759 B
Bash
Executable file
27 lines
759 B
Bash
Executable file
#!/bin/sh -eu
|
|
|
|
REF_EDID_DECODE="${REF_EDID_DECODE:-edid-decode}"
|
|
|
|
BUILDDIR="${BUILDDIR:-./build}"
|
|
DI_EDID_DECODE="${DI_EDID_DECODE:-${BUILDDIR}/di-edid-decode/di-edid-decode}"
|
|
DI_EDID_PRINT="${DI_EDID_PRINT:-${BUILDDIR}/test/di-edid-print}"
|
|
|
|
workdir="$(mktemp -d)"
|
|
cleanup() {
|
|
rm -rf "$workdir"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
for edid in "$@"; do
|
|
diff="${edid%.edid}.diff"
|
|
"$REF_EDID_DECODE" --skip-hex-dump --check --skip-sha <"$edid" >"$workdir/ref" || [ $? = 254 ]
|
|
"$DI_EDID_DECODE" <"$edid" >"$workdir/di" || [ $? = 254 ]
|
|
cp "$workdir/ref" "${edid%.edid}.ref"
|
|
if ! diff -u --label ref "$workdir/ref" --label di "$workdir/di" >"$workdir/diff"; then
|
|
cp "$workdir/diff" "$diff"
|
|
else
|
|
rm -f "$diff"
|
|
fi
|
|
|
|
"$DI_EDID_PRINT" <"$edid" >"${edid%.edid}.print"
|
|
done
|