From 34b250849ac9ce7b41dce908457cfddcd14c7ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Geyelin?= Date: Mon, 22 Apr 2024 13:52:34 +0200 Subject: [PATCH] Fix comment in prlimit test --- tests/prlimit/test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/prlimit/test b/tests/prlimit/test index 7202018b..46b9e02e 100755 --- a/tests/prlimit/test +++ b/tests/prlimit/test @@ -30,13 +30,13 @@ $result = system( ); ok($result); # we expect this to fail. -# Verify that test_getrlimit_t can get limits of test_setrlimit_child_t +# Verify that test_getrlimit_t can get limits of test_getrlimit_child_t $result = system( "runcon -t test_getrlimit_t $basedir/parent -g test_getrlimit_child_t $basedir/child 2>&1" ); ok( $result, 0 ); # we expect this to succeed. -# Verify that test_no_getrlimit_t cannot get limit of test_setrlimit_child_t +# Verify that test_no_getrlimit_t cannot get limit of test_getrlimit_child_t $result = system( "runcon -t test_no_getrlimit_t $basedir/parent -g test_getrlimit_child_t $basedir/child 2>&1" );