Lines Matching refs:test_file_abs_buf
226 char test_file_abs_buf[PATHMAX]; in realpath_cb() local
227 size_t test_file_abs_size = sizeof(test_file_abs_buf); in realpath_cb()
231 uv_cwd(test_file_abs_buf, &test_file_abs_size); in realpath_cb()
233 strcat(test_file_abs_buf, "\\test_file"); in realpath_cb()
234 ASSERT_OK(_stricmp(req->ptr, test_file_abs_buf)); in realpath_cb()
236 strcat(test_file_abs_buf, "/test_file"); in realpath_cb()
237 ASSERT_OK(strcmp(req->ptr, test_file_abs_buf)); in realpath_cb()
2195 char test_file_abs_buf[PATHMAX]; in TEST_IMPL() local
2204 test_file_abs_size = sizeof(test_file_abs_buf); in TEST_IMPL()
2206 uv_cwd(test_file_abs_buf, &test_file_abs_size); in TEST_IMPL()
2207 strcat(test_file_abs_buf, "\\test_file"); in TEST_IMPL()
2209 uv_cwd(test_file_abs_buf, &test_file_abs_size); in TEST_IMPL()
2210 strcat(test_file_abs_buf, "/test_file"); in TEST_IMPL()
2289 ASSERT_OK(_stricmp(req.ptr, test_file_abs_buf)); in TEST_IMPL()
2291 ASSERT_OK(strcmp(req.ptr, test_file_abs_buf)); in TEST_IMPL()