diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2021-10-27 10:55:21 -0400 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2021-10-27 15:32:57 -0400 |
commit | ef255db73ad9d8f53a53cdeff49625e3a5802b25 (patch) | |
tree | f0853e310c0317ae2bbd424a877674d41b64baca /unittests | |
parent | 8eaa2be5d9f6b8cd19ee6c0bcd737b4ba3a0afc5 (diff) | |
download | meson-ef255db73ad9d8f53a53cdeff49625e3a5802b25.zip meson-ef255db73ad9d8f53a53cdeff49625e3a5802b25.tar.gz meson-ef255db73ad9d8f53a53cdeff49625e3a5802b25.tar.bz2 |
test_clang_format: Do not assume meson source is in git
Fixes: #9437
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/allplatformstests.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index f05e529..3443076 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -2532,6 +2532,14 @@ class AllPlatformTests(BasePlatformTests): if self.backend is not Backend.ninja: raise SkipTest(f'Clang-format is for now only supported on Ninja, not {self.backend.name}') testdir = os.path.join(self.unit_test_dir, '54 clang-format') + + # Ensure that test project is in git even when running meson from tarball. + srcdir = os.path.join(self.builddir, 'src') + shutil.copytree(testdir, srcdir) + _git_init(srcdir) + testdir = srcdir + self.new_builddir() + testfile = os.path.join(testdir, 'prog.c') badfile = os.path.join(testdir, 'prog_orig_c') goodfile = os.path.join(testdir, 'prog_expected_c') |