This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch dev/dimmus/test
in repository efl.

View the commit online.

commit 40ee43d88940e727e47685bbac1bac8b6b662874
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 21 12:23:50 2024 +0500

    meson: exclude_suits appeared in 0.57. So protect this for older meson usage.
---
 meson.build | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/meson.build b/meson.build
index c95a6f3d74..79f037d88f 100644
--- a/meson.build
+++ b/meson.build
@@ -376,19 +376,21 @@ subdir('src/edje_external')
 subdir('data')
 
 if WITH_TESTS
-  add_test_setup('quick',
-    exclude_suites: [
-      'eolian',
-      'eo-suite',
-      'eo-suite-dbg',
-      'eo-suite-fallback',
-      'elput',
-      'ector',
-      'emile',
-      'eina'
-    ], 
-    is_default: true
-  )
+  if meson.version().version_compare('>=0.57.0')
+    add_test_setup('quick',
+      exclude_suites: [
+        'eolian',
+        'eo-suite',
+        'eo-suite-dbg',
+        'eo-suite-fallback',
+        'elput',
+        'ector',
+        'emile',
+        'eina'
+      ], 
+      is_default: true
+    )
+  endif
 
   if check_dep.version() == '0.15.1'
     efl_tests_warning = '\n     '.join(['',

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to