Lines Matching refs:path
43 char path[PATHMAX];
53 snprintf(path, sizeof(path), "%s", executable_path);
55 ASSERT_NOT_NULL(realpath(executable_path, path));
58 match = strstr(buffer, path);
59 /* Verify that the path returned from uv_exepath is a subdirectory of
62 ASSERT(match && !strcmp(match, path));
101 match = strstr(buffer, path);
102 /* Verify that the path returned from uv_exepath is a subdirectory of
106 ASSERT_STR_EQ(match, path);