[xharness] Fix logic to include the .NET xtro tests. (#14991)

Both 'IncludeXtro' and 'IncludeDotNet' must be set to run the .NET xtro tests
(which means they're ignored if either is false).
This commit is contained in:
Rolf Bjarne Kvinge 2022-05-12 08:20:06 +02:00 коммит произвёл GitHub
Родитель 774b3d7380
Коммит 447e637ac0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -202,7 +202,7 @@ namespace Xharness.Jenkins {
TestName = "Xtro",
Target = "dotnet-wrench",
WorkingDirectory = Path.Combine (HarnessConfiguration.RootDirectory, "xtro-sharpie"),
Ignored = !IncludeXtro && !IncludeDotNet,
Ignored = !(IncludeXtro && IncludeDotNet),
Timeout = TimeSpan.FromMinutes (15),
SupportsParallelExecution = false,
};