mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 08:40:11 +01:00
meson: don't build or run mesa-sha1 test on windows
It crashes hard (pop-up window and all). v2: - Change comment to FIXME Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> Acked-by: Kristian H. Kristensen <hoegsberg@google.com>
This commit is contained in:
parent
b6b59813c3
commit
e1dbf10749
1 changed files with 14 additions and 11 deletions
|
|
@ -241,17 +241,20 @@ if with_tests
|
|||
suite : ['util'],
|
||||
)
|
||||
|
||||
test(
|
||||
'mesa-sha1',
|
||||
executable(
|
||||
'mesa-sha1_test',
|
||||
files('mesa-sha1_test.c'),
|
||||
include_directories : inc_common,
|
||||
dependencies : idep_mesautil,
|
||||
c_args : [c_msvc_compat_args],
|
||||
),
|
||||
suite : ['util'],
|
||||
)
|
||||
# FIXME: this test crashes on windows
|
||||
if host_machine.system() != 'windows'
|
||||
test(
|
||||
'mesa-sha1',
|
||||
executable(
|
||||
'mesa-sha1_test',
|
||||
files('mesa-sha1_test.c'),
|
||||
include_directories : inc_common,
|
||||
link_with : _libmesa_util,
|
||||
c_args : [c_msvc_compat_args],
|
||||
),
|
||||
suite : ['util'],
|
||||
)
|
||||
endif
|
||||
|
||||
test(
|
||||
'bitset',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue