From: Mauricio Vásquez Date: Fri, 26 Feb 2021 12:07:44 +0000 (-0500) Subject: src/test: add restrict network interfaces to test-cgroup-mask X-Git-Tag: v250-rc1~800^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ce150f5ec0f2efd12a01d072721843366125f45;p=thirdparty%2Fsystemd.git src/test: add restrict network interfaces to test-cgroup-mask Signed-off-by: Mauricio Vásquez --- diff --git a/src/test/test-cgroup-mask.c b/src/test/test-cgroup-mask.c index 184b393dd51..415ddf3e984 100644 --- a/src/test/test-cgroup-mask.c +++ b/src/test/test-cgroup-mask.c @@ -140,7 +140,7 @@ static void test_cg_mask_to_string_one(CGroupMask mask, const char *t) { static void test_cg_mask_to_string(void) { test_cg_mask_to_string_one(0, NULL); - test_cg_mask_to_string_one(_CGROUP_MASK_ALL, "cpu cpuacct cpuset io blkio memory devices pids bpf-firewall bpf-devices bpf-foreign bpf-socket-bind"); + test_cg_mask_to_string_one(_CGROUP_MASK_ALL, "cpu cpuacct cpuset io blkio memory devices pids bpf-firewall bpf-devices bpf-foreign bpf-socket-bind bpf-restrict-network-interfaces"); test_cg_mask_to_string_one(CGROUP_MASK_CPU, "cpu"); test_cg_mask_to_string_one(CGROUP_MASK_CPUACCT, "cpuacct"); test_cg_mask_to_string_one(CGROUP_MASK_CPUSET, "cpuset");