From 4e657667e1c0182ae45af80a21f70219e39bb440 Mon Sep 17 00:00:00 2001 From: Pavel Koneski Date: Sat, 1 Feb 2025 15:14:09 -0800 Subject: [PATCH] Enable test query for exact test name --- make.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make.ps1 b/make.ps1 index 3f02b5aa6..16c41b673 100755 --- a/make.ps1 +++ b/make.ps1 @@ -220,9 +220,9 @@ function Test([String] $target, [String] $configuration, [String[]] $frameworks, "cpython" { $tasks += createTask "cpython" "TestCategory=CPython" } default { if ($filter.ToLower().StartsWith('ironpython')) { - $tasks += createTask "query" "TestCategory=IronPython&$filter" + $tasks += createTask "query" "TestCategory=IronPython&Name=$framework.$filter" } elseif ($filter.ToLower().StartsWith('cpython')) { - $tasks += createTask "query" "TestCategory=CPython&$filter" + $tasks += createTask "query" "TestCategory=CPython&Name=$framework.$filter" } else { $tasks += createTask "query" $filter }