tests: Make logging verbose

This commit is contained in:
Georges Basile Stavracas Neto 2018-05-09 17:44:46 -03:00
parent c23e8f3547
commit 8404f526b6

View file

@ -6,6 +6,9 @@ test_units = [
] ]
includes = [top_inc, include_directories('../../panels/datetime')] includes = [top_inc, include_directories('../../panels/datetime')]
env = [
'G_MESSAGES_DEBUG=all',
]
cflags = [ cflags = [
'-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir()), '-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir()),
'-DSRCDIR="@0@"'.format(meson.source_root() + '/panels/datetime') '-DSRCDIR="@0@"'.format(meson.source_root() + '/panels/datetime')
@ -21,6 +24,6 @@ foreach unit: test_units
c_args : cflags c_args : cflags
) )
test(unit, exe) test(unit, exe, env: env)
endforeach endforeach