summaryrefslogtreecommitdiff
path: root/unittests/baseplatformtests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-04-14 20:46:42 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2024-04-14 22:24:05 +0300
commit1b9eb6f3134d61c5ea0026ac95d807aab812c414 (patch)
tree99ce8170be60e4e893020215285873690b135955 /unittests/baseplatformtests.py
parent9f02d0a3e5a5ffc82256391c244b1af38e41ef78 (diff)
downloadmeson-1b9eb6f3134d61c5ea0026ac95d807aab812c414.tar.gz
Fix builds with Ninja 12 and remove a 5 year old workaround.
Diffstat (limited to 'unittests/baseplatformtests.py')
-rw-r--r--unittests/baseplatformtests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/unittests/baseplatformtests.py b/unittests/baseplatformtests.py
index 7c8543d06..e94a2baac 100644
--- a/unittests/baseplatformtests.py
+++ b/unittests/baseplatformtests.py
@@ -31,7 +31,7 @@ import mesonbuild.modules.pkgconfig
from run_tests import (
- Backend, ensure_backend_detects_changes, get_backend_commands,
+ Backend, get_backend_commands,
get_builddir_target_args, get_meson_script, run_configure_inprocess,
run_mtest_inprocess, handle_meson_skip_test,
)
@@ -294,8 +294,6 @@ class BasePlatformTests(TestCase):
arg = [arg]
else:
arg = list(arg)
- if will_build:
- ensure_backend_detects_changes(self.backend)
self._run(self.mconf_command + arg + [self.builddir])
def getconf(self, optname: str):
@@ -309,7 +307,6 @@ class BasePlatformTests(TestCase):
windows_proof_rmtree(self.builddir)
def utime(self, f):
- ensure_backend_detects_changes(self.backend)
os.utime(f)
def get_compdb(self):