aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-01-02 16:32:01 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-01-07 22:26:09 +0100
commite67ba0fd6469baa293bcbd189cbb54573b81b8ac (patch)
treee65cf915dca93975e1209657a029a42940c82e05
parenta1d8c1d3e93974bde114743c8b624221b776cb16 (diff)
downloadmeson-e67ba0fd6469baa293bcbd189cbb54573b81b8ac.zip
meson-e67ba0fd6469baa293bcbd189cbb54573b81b8ac.tar.gz
meson-e67ba0fd6469baa293bcbd189cbb54573b81b8ac.tar.bz2
Also made buildsystem files absolute
-rwxr-xr-xrun_unittests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index eb5607d..3f72344 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -3225,7 +3225,9 @@ recommended as it is not supported on some platforms''')
self.assertDictEqual(buildopts_to_find, {})
# Check buildsystem_files
- self.assertPathListEqual(res['buildsystem_files'], ['meson.build', 'sharedlib/meson.build', 'staticlib/meson.build'])
+ bs_files = ['meson.build', 'sharedlib/meson.build', 'staticlib/meson.build']
+ bs_files = [os.path.join(testdir, x) for x in bs_files]
+ self.assertPathListEqual(res['buildsystem_files'], bs_files)
# Check dependencies
dependencies_to_find = ['threads']