mirror of
https://gitlab.freedesktop.org/emersion/libdisplay-info.git
synced 2024-12-25 21:59:08 +01:00
b45cd7c0dc
This EDID contains an embedded DisplayID 2 extension. It originates from: https://gitlab.freedesktop.org/drm/intel/-/issues/2711 Signed-off-by: Simon Ser <contact@emersion.fr>
30 lines
674 B
Meson
30 lines
674 B
Meson
ref_edid_decode = find_program('edid-decode', native: true, required: false)
|
|
if not ref_edid_decode.found()
|
|
test('edid-decode-not-found', find_program('false'))
|
|
subdir_done()
|
|
endif
|
|
|
|
test_harness = find_program('./edid-decode-check.sh', native: true)
|
|
|
|
test_cases = [
|
|
'apple-xdr-dp',
|
|
'dell-2408wfp-dp',
|
|
'hp-5dq99aa-hdmi',
|
|
'jdi-lpm135m467-edp',
|
|
'panasonic-mei96a2-dp',
|
|
'samsung-s27a950d-dp',
|
|
'sun-gh19ps-dvi',
|
|
]
|
|
|
|
foreach tc : test_cases
|
|
test(
|
|
tc,
|
|
test_harness,
|
|
args: [files('data/' + tc + '.edid')],
|
|
env: [
|
|
'REF_EDID_DECODE=' + ref_edid_decode.full_path(),
|
|
'DI_EDID_DECODE=' + di_edid_decode.full_path(),
|
|
],
|
|
depends: [di_edid_decode],
|
|
)
|
|
endforeach
|