diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-04-23 02:16:04 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-04-23 02:16:30 +0300 |
commit | 83ffb3ea02eac7e2634f2f61c80f2792d185562a (patch) | |
tree | 2d7e1ed6a63343c97e66e2efdb6d94de1e09b7eb /run_unittests.py | |
parent | 824650411eacd8b0e64036705859164112bf51d3 (diff) | |
download | meson-83ffb3ea02eac7e2634f2f61c80f2792d185562a.zip meson-83ffb3ea02eac7e2634f2f61c80f2792d185562a.tar.gz meson-83ffb3ea02eac7e2634f2f61c80f2792d185562a.tar.bz2 |
Use the correct file path. Not the wrong one.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index c507a0c..5fdc8c7 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2964,7 +2964,7 @@ class LinuxArmCrossCompileTests(BasePlatformTests): https://github.com/mesonbuild/meson/issues/3089 ''' testdir = os.path.join(self.unit_test_dir, '29 cross file overrides always args') - self.meson_cross_file = os.path.join(self.unit_test_dir, 'ubuntu-armhf-overrides.txt') + self.meson_cross_file = os.path.join(testdir, 'ubuntu-armhf-overrides.txt') self.init(testdir) compdb = self.get_compdb() self.assertRegex(compdb[0]['command'], '-D_FILE_OFFSET_BITS=64.*-U_FILE_OFFSET_BITS') |