tests: fix environment for running tests

These should not be in quotes so that we can build actual file paths
from them.
This commit is contained in:
Christian Hergert
2021-02-24 17:39:35 -08:00
parent e7d1458428
commit 937e162472

View File

@ -1,8 +1,8 @@
if get_option('enable_tests')
test_env = [
'G_TEST_SRCDIR="@0@"'.format(meson.current_source_dir()),
'G_TEST_BUILDDIR="@0@"'.format(meson.current_build_dir()),
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()),
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
'G_DEBUG=gc-friendly',
'GSETTINGS_BACKEND=memory',
'MALLOC_CHECK_=2',