gnome-control-center/tests/printers/meson.build
Georges Basile Stavracas Neto 71baf068d9 Disable the canonicalization test
The test needs fixing, and the release needs to happen again.
2020-09-05 11:56:24 -03:00

22 lines
484 B
Meson

test_units = [
#'test-canonicalization',
'test-shift'
]
includes = [top_inc, include_directories('../../panels/printers')]
cflags = '-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir())
foreach unit: test_units
exe = executable(
unit,
[unit + '.c'],
include_directories : includes,
dependencies : common_deps,
link_with : [printers_panel_lib],
c_args : cflags
)
test(unit, exe)
endforeach