File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ $jobRows = $queriesToCheck | ForEach-Object -ThrottleLimit $NumThreads -Parallel
321321 # ##########################################################
322322 # Push context
323323 # ##########################################################
324- $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory )
324+ $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory - Query $CurrentQueryName )
325325
326326 if ($fileSet ){
327327 $context = Push-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - FileSet $fileSet
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ function Get-CompilerSpecificFiles {
99 $Language ,
1010 [Parameter (Mandatory )]
1111 [string ]
12- $TestDirectory
12+ $TestDirectory ,
13+ [Parameter (Mandatory )]
14+ [string ]
15+ $Query
1316 )
1417 #
1518 # Convention is as follows:
@@ -28,7 +31,7 @@ function Get-CompilerSpecificFiles {
2831 $f
2932 }
3033
31- foreach ($f in (Get-ChildItem - Filter " * .expected.$Configuration " $TestDirectory )){
34+ foreach ($f in (Get-ChildItem - Filter " $Query .expected.$Configuration " $TestDirectory )){
3235 Write-Host " Found file $f ..."
3336 $f
3437 }
You can’t perform that action at this time.
0 commit comments