[mutter] test/cogl/unit: Allow marking known failures
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] test/cogl/unit: Allow marking known failures
- Date: Mon, 8 Aug 2022 22:13:13 +0000 (UTC)
commit 57382b6aff2f67fb685ab0abb6fcc680c2091304
Author: Jonas Ã…dahl <jadahl gmail com>
Date: Fri Aug 5 11:01:54 2022 +0200
test/cogl/unit: Allow marking known failures
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2555>
src/tests/cogl/unit/meson.build | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/src/tests/cogl/unit/meson.build b/src/tests/cogl/unit/meson.build
index 7b1046e998..b5571b7ade 100644
--- a/src/tests/cogl/unit/meson.build
+++ b/src/tests/cogl/unit/meson.build
@@ -1,6 +1,6 @@
cogl_unit_tests = [
- 'test-bitmask',
- 'test-pipeline-cache',
+ ['test-bitmask', true],
+ ['test-pipeline-cache', true],
]
test_env = environment()
@@ -10,11 +10,12 @@ test_env.set('G_ENABLE_DIAGNOSTIC', '0')
test_env.set('MUTTER_TEST_PLUGIN_PATH', '@0@'.format(default_plugin.full_path()))
foreach unit_test: cogl_unit_tests
- test_name = 'cogl-' + unit_test
+ test_name = 'cogl-' + unit_test[0]
+ should_pass = unit_test[1]
test_executable = executable(test_name,
sources: [
- unit_test + '.c',
+ unit_test[0] + '.c',
cogl_test_utils,
],
c_args: [
@@ -36,5 +37,6 @@ foreach unit_test: cogl_unit_tests
suite: ['cogl', 'cogl/unit'],
env: test_env,
is_parallel: false,
+ should_fail: not should_pass,
)
endforeach
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]