From 447e637ac0e731d9ab4d7b7d76542dc1dcb606a7 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 12 May 2022 08:20:06 +0200 Subject: [PATCH] [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). --- tests/xharness/Jenkins/Jenkins.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xharness/Jenkins/Jenkins.cs b/tests/xharness/Jenkins/Jenkins.cs index 9c1905c29b..fd5054207a 100644 --- a/tests/xharness/Jenkins/Jenkins.cs +++ b/tests/xharness/Jenkins/Jenkins.cs @@ -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, };