aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py
index b889c3d..666777d 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -1288,6 +1288,9 @@ int main(int argc, char **argv) {
targets = mesonbuild.coredata.forbidden_target_names
# We don't actually define a target with this name
targets.pop('build.ninja')
+ # Remove this to avoid multiple entries with the same name
+ # but different case.
+ targets.pop('PHONY')
for i in targets:
self.assertPathExists(os.path.join(testdir, i))