gplugin/gplugin

Fix test dependencies on Windows

6 months ago, Elliott Sales de Andrade
199dc0cfccfb
Parents 9fa5d9e1fc11
Children 855520bce434
Fix test dependencies on Windows

This test plugin is not built there, so skip the test as well.

Testing Done:
Ran test on Windows.

Reviewed at https://reviews.imfreedom.org/r/2664/
--- a/gplugin/tests/meson.build Mon Oct 16 23:47:19 2023 -0500
+++ b/gplugin/tests/meson.build Tue Oct 17 01:04:39 2023 -0500
@@ -37,17 +37,16 @@
'plugin-info': [],
'signals': ['plugins'],
'source': [],
- 'unresolved-symbol': ['unresolved-symbol'],
'version-compare': [],
'versioned-dependencies': ['versioned-dependencies'],
}
-# dynamic-type-provider and dynamic-type-user libs are not built on Windows
-# so no need to test them there either
+# These libs are not built on Windows so no need to test them there either.
if host_machine.system() != 'windows'
-TESTS += {
- 'dynamic-type': ['dynamic-type'],
-}
+ TESTS += {
+ 'dynamic-type': ['dynamic-type'],
+ 'unresolved-symbol': ['unresolved-symbol'],
+ }
endif
###############################################################################