Searched defs:shell (Results 1 - 1 of 1) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-sh/
H A Datf-sh.cpp68 const std::string shell = atf::config::get("atf_shell"); local
73 "Atf_Shell='" + shell + "' ; " +
82 construct_argv(const std::string& shell, const int interpreter_argc, argument
92 argv[0] = shell.c_str();
121 "atf-sh is a shell interpreter that extends the functionality of the "
140 const std::string shell = atf::config::get("atf_shell"); local
141 const char** argv = construct_argv(shell, m_argc, m_argv);
145 const int ret = execv(shell.c_str(), const_cast< char** >(argv));
147 std::cerr << "Failed to execute " << shell << ": " << std::strerror(errno)

Completed in 426 milliseconds