diff options
-rwxr-xr-x | run_meson_command_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_meson_command_tests.py b/run_meson_command_tests.py index e7eab72..9dfb62e 100755 --- a/run_meson_command_tests.py +++ b/run_meson_command_tests.py @@ -142,6 +142,8 @@ class CommandTests(unittest.TestCase): s = p.as_posix() if 'mesonbuild' not in s: continue + if '/data/' in s: + continue have.add(s[s.rfind('mesonbuild'):]) self.assertEqual(have, expect) # Run `meson` |