зеркало из https://github.com/mono/CppSharp.git
Improved generator test runner to find tests in embedded setup.
This commit is contained in:
Родитель
c4edb58881
Коммит
46e697b0fb
|
@ -70,6 +70,11 @@ namespace CppSharp.Utils
|
|||
{
|
||||
var path = Path.Combine(directory.FullName, "tests", name);
|
||||
|
||||
if (Directory.Exists(path))
|
||||
return path;
|
||||
|
||||
path = Path.Combine(directory.FullName, "external", "CppSharp", "tests", name);
|
||||
|
||||
if (Directory.Exists(path))
|
||||
return path;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче