| 158 | |
| 159 | |
| 160 | string getTestScriptPath(const string& name) |
| 161 | { |
| 162 | string path = path::join(flags.source_dir, "src", "tests", name); |
| 163 | |
| 164 | if (!os::exists(path) && searchInstallationDirectory) { |
| 165 | path = path::join(TESTLIBEXECDIR, name); |
| 166 | } |
| 167 | |
| 168 | return path; |
| 169 | } |
| 170 | |
| 171 | |
| 172 | string getSbinDir() |