diff --git a/tests/datetime/meson.build b/tests/datetime/meson.build index b1dd514b4..4b2b03b36 100644 --- a/tests/datetime/meson.build +++ b/tests/datetime/meson.build @@ -6,6 +6,9 @@ test_units = [ ] includes = [top_inc, include_directories('../../panels/datetime')] +env = [ + 'G_MESSAGES_DEBUG=all', +] cflags = [ '-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir()), '-DSRCDIR="@0@"'.format(meson.source_root() + '/panels/datetime') @@ -21,6 +24,6 @@ foreach unit: test_units c_args : cflags ) - test(unit, exe) + test(unit, exe, env: env) endforeach