From 2234b4a503ec82c028c0931f070ba8aaaa075a98 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 25 Feb 2014 14:11:00 +0000 Subject: [PATCH] examples: test-cgroups: don't put code with side effects into g_assert() The g_assert() might get compiled out with the right compiler/preprocessor flags. --- examples/test-cgroups.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/test-cgroups.c b/examples/test-cgroups.c index 0412e4d..600fa3c 100644 --- a/examples/test-cgroups.c +++ b/examples/test-cgroups.c @@ -107,9 +107,11 @@ static void gst_rtsp_cgroup_pool_init (GstRTSPCGroupPool * pool) { pool->user = cgroup_new_cgroup ("user"); - g_assert (cgroup_add_controller (pool->user, "cpu") != NULL); + if (cgroup_add_controller (pool->user, "cpu") == NULL) + g_error ("Failed to add cpu controller to user cgroup"); pool->admin = cgroup_new_cgroup ("admin"); - g_assert (cgroup_add_controller (pool->admin, "cpu") != NULL); + if (cgroup_add_controller (pool->admin, "cpu") == NULL) + g_error ("Failed to add cpu controller to admin cgroup"); } static void -- 2.7.4