mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
check: skip silly test that segfaults when in a CK_FORK=no environment
See #623469.
This commit is contained in:
parent
694f4d90f8
commit
9db5a93ed8
1 changed files with 2 additions and 1 deletions
|
@ -535,7 +535,8 @@ gst_object_suite (void)
|
||||||
* the effort to try and detect which one should be producing which
|
* the effort to try and detect which one should be producing which
|
||||||
*/
|
*/
|
||||||
/* SEGV tests go last so we can debug the others */
|
/* SEGV tests go last so we can debug the others */
|
||||||
tcase_add_test_raise_signal (tc_chain, test_fail_abstract_new, SIGSEGV);
|
if (g_getenv ("CK_FORK") == NULL || strcmp (g_getenv ("CK_FORK"), "no") != 0)
|
||||||
|
tcase_add_test_raise_signal (tc_chain, test_fail_abstract_new, SIGSEGV);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
|
|
Loading…
Reference in a new issue