From c821b03efcf894b103d0a8c1552e4cec0bf8dec3 Mon Sep 17 00:00:00 2001 From: Julian Sparber Date: Thu, 22 Sep 2022 13:06:09 +0200 Subject: [PATCH] meson: Don't set G_TEST_* Those env variables aren't needed. --- plugins/provider/tests/meson.build | 2 -- tests/meson.build | 2 -- 2 files changed, 4 deletions(-) diff --git a/plugins/provider/tests/meson.build b/plugins/provider/tests/meson.build index 7a61397..881ce18 100644 --- a/plugins/provider/tests/meson.build +++ b/plugins/provider/tests/meson.build @@ -23,8 +23,6 @@ if get_option('tests') test_env = [ - 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()), - 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()), 'G_DEBUG=gc-friendly,fatal-warnings', 'GSETTINGS_BACKEND=memory', 'PYTHONDONTWRITEBYTECODE=yes', diff --git a/tests/meson.build b/tests/meson.build index 3c2ad00..60df9ad 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -3,8 +3,6 @@ if get_option('tests') subdir('mock') test_env = [ - 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()), - 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()), 'G_DEBUG=gc-friendly,fatal-warnings', 'GSETTINGS_BACKEND=memory', 'PYTHONDONTWRITEBYTECODE=yes',