mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
selftests/landlock: Fix error message
[ Upstream commit 2107c35128ad751b201eb92fe91443450d9e5c37 ]
The global variable errno may not be set in test_execute(). Do not use
it in related error message.
Cc: Günther Noack <gnoack@google.com>
Fixes: e1199815b4 ("selftests/landlock: Add user space tests")
Link: https://lore.kernel.org/r/20250108154338.1129069-21-mic@digikod.net
Signed-off-by: Mickaël Salaün <mic@digikod.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1bd57a6e37
commit
a1a91f48ba
@@ -1775,8 +1775,7 @@ static void test_execute(struct __test_metadata *const _metadata, const int err,
|
|||||||
ASSERT_EQ(1, WIFEXITED(status));
|
ASSERT_EQ(1, WIFEXITED(status));
|
||||||
ASSERT_EQ(err ? 2 : 0, WEXITSTATUS(status))
|
ASSERT_EQ(err ? 2 : 0, WEXITSTATUS(status))
|
||||||
{
|
{
|
||||||
TH_LOG("Unexpected return code for \"%s\": %s", path,
|
TH_LOG("Unexpected return code for \"%s\"", path);
|
||||||
strerror(errno));
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user