Lines Matching refs:build_path
87 char* build_path = getenv("BUILD_FULL_PATH");
88 if (!build_path) {
93 build_path = strdup(build_path);
94 posixify_path(build_path);
96 int i = strlen(build_path) - 4;
97 if ((i > 0) && (strcmp(&build_path[i], ".exe") == 0))
98 build_path[i] = 0;
100 expect_equal_str(build_path, path, "test_util_get_process_exec_path");
101 free(build_path);