blob: 6f4b91cf810441132330b565d0e75da8719be5b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
foreach t : ['srgb', 'u_format_test', 'u_format_compatible_test']
test(t,
executable(
t,
'@0@.c'.format(t),
include_directories : inc_common,
dependencies : idep_mesautil,
),
suite : 'format',
should_fail : meson.get_cross_property('xfail', '').contains(t),
)
endforeach
|