Home
last modified time | relevance | path

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

/system/utest/fs/
A Dtest-realpath.cpp124 char bufmax[PATH_MAX + 1]; in TestRealpathRelative() local
125 bufmax[0] = '.'; in TestRealpathRelative()
133 bufmax[len++] = '/'; in TestRealpathRelative()
135 memcpy(bufmax + len, "my_file", strlen("my_file")); in TestRealpathRelative()
136 bufmax[len + strlen("my_file")] = 0; in TestRealpathRelative()
137 ASSERT_EQ(strlen(bufmax), PATH_MAX - cwd_len - 1); in TestRealpathRelative()
139 ASSERT_EQ(realpath(bufmax, buf2), buf2); in TestRealpathRelative()
145 bufmax[len++] = '/'; in TestRealpathRelative()
146 strcpy(bufmax + len, "my_file"); in TestRealpathRelative()
147 ASSERT_NULL(realpath(bufmax, buf2)); in TestRealpathRelative()

Completed in 2 milliseconds