Lines Matching refs:test_file_abs_buf
219 char test_file_abs_buf[PATHMAX]; in realpath_cb() local
220 size_t test_file_abs_size = sizeof(test_file_abs_buf); in realpath_cb()
234 uv_cwd(test_file_abs_buf, &test_file_abs_size); in realpath_cb()
236 strcat(test_file_abs_buf, "\\test_file"); in realpath_cb()
237 ASSERT(stricmp(req->ptr, test_file_abs_buf) == 0); in realpath_cb()
239 strcat(test_file_abs_buf, "/test_file"); in realpath_cb()
240 ASSERT(strcmp(req->ptr, test_file_abs_buf) == 0); in realpath_cb()
2069 char test_file_abs_buf[PATHMAX]; in TEST_IMPL() local
2078 test_file_abs_size = sizeof(test_file_abs_buf); in TEST_IMPL()
2080 uv_cwd(test_file_abs_buf, &test_file_abs_size); in TEST_IMPL()
2081 strcat(test_file_abs_buf, "\\test_file"); in TEST_IMPL()
2083 uv_cwd(test_file_abs_buf, &test_file_abs_size); in TEST_IMPL()
2084 strcat(test_file_abs_buf, "/test_file"); in TEST_IMPL()
2172 ASSERT(stricmp(req.ptr, test_file_abs_buf) == 0); in TEST_IMPL()
2174 ASSERT(strcmp(req.ptr, test_file_abs_buf) == 0); in TEST_IMPL()