Improved generator test runner to find tests in embedded setup.

This commit is contained in:
Joao Matos 2017-03-10 04:41:55 +00:00
Родитель c4edb58881
Коммит 46e697b0fb
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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;