Home
last modified time | relevance | path

Searched refs:groupRet (Results 1 – 1 of 1) sorted by relevance

/kernel/liteos_a/testsuites/unittest/libc/sys/full/
Dsys_test_025.cpp43 struct group *groupRet = nullptr; in TestCase0() local
55 groupRet = getgrgid(0); in TestCase0()
56 ICUNIT_ASSERT_NOT_EQUAL(groupRet, nullptr, groupRet); in TestCase0()
57 ICUNIT_ASSERT_STRING_EQUAL(groupRet->gr_name, "root", groupRet->gr_name); in TestCase0()
58 ICUNIT_ASSERT_STRING_EQUAL(groupRet->gr_passwd, "x", groupRet->gr_passwd); in TestCase0()
59 ICUNIT_ASSERT_EQUAL(groupRet->gr_gid, 0, groupRet->gr_gid); in TestCase0()
61 groupRet = getgrnam("root"); in TestCase0()
62 ICUNIT_ASSERT_NOT_EQUAL(groupRet, nullptr, groupRet); in TestCase0()
63 ICUNIT_ASSERT_STRING_EQUAL(groupRet->gr_name, "root", groupRet->gr_name); in TestCase0()
64 ICUNIT_ASSERT_STRING_EQUAL(groupRet->gr_passwd, "x", groupRet->gr_passwd); in TestCase0()
[all …]