| 122 | |
| 123 | |
| 124 | string getLauncherDir() |
| 125 | { |
| 126 | string path = path::join(tests::flags.build_dir, "src"); |
| 127 | |
| 128 | if (!os::exists(path) && searchInstallationDirectory) { |
| 129 | path = PKGLIBEXECDIR; |
| 130 | } |
| 131 | |
| 132 | return path; |
| 133 | } |
| 134 | |
| 135 | |
| 136 | string getTestHelperPath(const string& name) |
no test coverage detected