dmabuf: Skip dmabuf tests for macOS

Dmabuf is not supported for macOS.
This commit is contained in:
Arjan Molenaar 2024-02-11 11:27:13 +01:00
parent 16f91fc5d2
commit 703e5ab9a8

View File

@ -63,7 +63,7 @@ internal_tests = [
{ 'name': 'subsurface' },
]
if host_machine.system() != 'windows'
if host_machine.system() not in ['darwin', 'windows']
internal_tests += { 'name': 'dmabufformats' }
internal_tests += { 'name': 'dmabuftexture', 'suites': 'failing' }
endif