| 134 | |
| 135 | |
| 136 | string getTestHelperPath(const string& name) |
| 137 | { |
| 138 | string path = path::join(tests::flags.build_dir, "src", name); |
| 139 | |
| 140 | if (!os::exists(path) && searchInstallationDirectory) { |
| 141 | path = path::join(TESTLIBEXECDIR, name); |
| 142 | } |
| 143 | |
| 144 | return path; |
| 145 | } |
| 146 | |
| 147 | |
| 148 | string getTestHelperDir() |
no test coverage detected