summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-02-19 14:47:32 +0000
committerSimon McVittie <smcv@collabora.com>2022-02-20 11:41:27 +0000
commitd80dcd80dfd2cb5c1778c171aaac77eb3379eafc (patch)
tree2ea34088d8e58a0eb1f335e7b52f249f34a27ad2
parent12c920b492d8c1536b26593b0bcbc984ea97419f (diff)
downloadbubblewrap-d80dcd80dfd2cb5c1778c171aaac77eb3379eafc.tar.gz
meson: Make G_TEST_SRCDIR, G_TEST_BUILDDIR match Autotools
Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--tests/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index aabd1e0..8221a39 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -23,8 +23,8 @@ test_scripts = [
test_env = environment()
test_env.set('BWRAP', bwrap.full_path())
-test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
-test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
+test_env.set('G_TEST_BUILDDIR', meson.current_build_dir() / '..')
+test_env.set('G_TEST_SRCDIR', meson.current_source_dir() / '..')
foreach pair : test_programs
name = pair[0]