tests: Mark some test cases as skippable

This means the mutter/tty suite won't fail when the tests can't
TakeControl, i.e. run in the already active session.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3095>
This commit is contained in:
Jonas Ådahl 2023-06-26 22:06:22 +02:00 committed by Marge Bot
parent eb9ef1da8d
commit 4aeb051e9b
3 changed files with 3 additions and 3 deletions

View File

@ -161,6 +161,6 @@ main (int argc,
init_tests ();
return meta_context_test_run_tests (META_CONTEXT_TEST (context),
META_TEST_RUN_FLAG_NONE);
META_TEST_RUN_FLAG_CAN_SKIP);
}

View File

@ -146,5 +146,5 @@ main (int argc, char *argv[])
disconnect_connector_filter, NULL);
return meta_context_test_run_tests (META_CONTEXT_TEST (context),
META_TEST_RUN_FLAG_NONE);
META_TEST_RUN_FLAG_CAN_SKIP);
}

View File

@ -349,5 +349,5 @@ main (int argc, char *argv[])
test_context = context;
return meta_context_test_run_tests (META_CONTEXT_TEST (context),
META_TEST_RUN_FLAG_NONE);
META_TEST_RUN_FLAG_CAN_SKIP);
}