From 191a315586d2202f76cddc27f7c3579eafbbdce1 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Thu, 28 Aug 2025 12:17:48 +0300 Subject: Fix Cygwin test failure. --- unittests/linuxliketests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py index 1b2607b57..1ec23a0cb 100644 --- a/unittests/linuxliketests.py +++ b/unittests/linuxliketests.py @@ -1261,8 +1261,9 @@ class LinuxlikeTests(BasePlatformTests): myenv['PKG_CONFIG_PATH'] = _prepend_pkg_config_path(self.privatedir) stdo = subprocess.check_output([PKG_CONFIG, '--libs-only-l', 'libsomething'], env=myenv) deps = [b'-lgobject-2.0', b'-lgio-2.0', b'-lglib-2.0', b'-lsomething'] - if is_windows() or is_cygwin() or is_osx() or is_openbsd(): + if is_windows() or is_osx() or is_openbsd(): # On Windows, libintl is a separate library + # It used to be on Cygwin as well, but no longer is. deps.append(b'-lintl') self.assertEqual(set(deps), set(stdo.split())) -- cgit v1.2.3