Use execvpe instead of execve in omnitrace-sample (#187)

* Use execvpe instead of execve in omnitrace-sample

- previous implementation preferred exe in PATH over exe in PWD
- 'p' variants of exec duplicate the actions of the shell in searching for an executable file if the specified filename does not contain a slash character

* OpenMPI oversubscribe arg in testing
Этот коммит содержится в:
Jonathan R. Madsen
2022-10-27 15:15:50 -05:00
коммит произвёл GitHub
родитель a41a5c155e
Коммит 139070a2de
5 изменённых файлов: 11 добавлений и 12 удалений
-6
Просмотреть файл
@@ -64,12 +64,6 @@ auto updated_envs = std::set<std::string_view>{};
auto original_envs = std::set<std::string>{};
} // namespace
std::string
get_command(const char* _argv0)
{
return omnitrace::path::find_path(_argv0, 0, omnitrace::common::get_env("PATH", ""));
}
std::string
get_realpath(const std::string& _v)
{