* Get the name of the given example file. * @param name the simple name of the example file */
| 66 | * @param name the simple name of the example file |
| 67 | */ |
| 68 | std::string findExample(const std::string& name) { |
| 69 | #define ORC_EXAMPLE_DIR_STR ORC_TOOL_TEST_STRINGIFY(ORC_EXAMPLE_DIR) |
| 70 | std::string result = ORC_EXAMPLE_DIR_STR; |
| 71 | result += "/"; |
| 72 | result += name; |
| 73 | return result; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Get the name of the given executable. |
no outgoing calls
no test coverage detected