1 /* 2 * Copyright (c) 2024 Meta Platforms 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <errno.h> 8 #include <pwd.h> 9 10 #include <zephyr/ztest.h> 11 ZTEST(pwd,test_pwd_stubs)12ZTEST(pwd, test_pwd_stubs) 13 { 14 zassert_equal(getpwnam_r(NULL, NULL, NULL, 42, NULL), ENOSYS); 15 zassert_equal(getpwuid_r(42, NULL, NULL, 42, NULL), ENOSYS); 16 } 17 18 ZTEST_SUITE(pwd, NULL, NULL, NULL, NULL, NULL); 19