From 9db5a93ed87628cfec979ba8c1c5e9e5c7a7559a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 3 Jul 2010 16:39:40 +0100 Subject: [PATCH] check: skip silly test that segfaults when in a CK_FORK=no environment See #623469. --- tests/check/gst/gstobject.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/check/gst/gstobject.c b/tests/check/gst/gstobject.c index 159bb6d..85d2d07 100644 --- a/tests/check/gst/gstobject.c +++ b/tests/check/gst/gstobject.c @@ -535,7 +535,8 @@ gst_object_suite (void) * the effort to try and detect which one should be producing which */ /* 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 return s; -- 2.7.4