* Get the name of the given executable. * @param name the simple name of the executable */
| 78 | * @param name the simple name of the executable |
| 79 | */ |
| 80 | std::string findProgram(const std::string& name) { |
| 81 | #define ORC_BUILD_DIR_STR ORC_TOOL_TEST_STRINGIFY(ORC_BUILD_DIR) |
| 82 | std::string result = ORC_BUILD_DIR_STR; |
| 83 | result += "/"; |
| 84 | result += name; |
| 85 | return result; |
| 86 | } |