| 94 | |
| 95 | |
| 96 | string getModulePath(const string& name) |
| 97 | { |
| 98 | string path = path::join(tests::flags.build_dir, "src", ".libs"); |
| 99 | |
| 100 | if (!os::exists(path) && searchInstallationDirectory) { |
| 101 | path = PKGMODULEDIR; |
| 102 | } |
| 103 | |
| 104 | return path::join(path, os::libraries::expandName(name)); |
| 105 | } |
| 106 | |
| 107 | |
| 108 | string getLibMesosPath() |
no test coverage detected