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
321
321
# ##########################################################
322
322
# Push context
323
323
# ##########################################################
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 )
325
325
326
326
if ($fileSet ){
327
327
$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 {
9
9
$Language ,
10
10
[Parameter (Mandatory )]
11
11
[string ]
12
- $TestDirectory
12
+ $TestDirectory ,
13
+ [Parameter (Mandatory )]
14
+ [string ]
15
+ $Query
13
16
)
14
17
#
15
18
# Convention is as follows:
@@ -28,7 +31,7 @@ function Get-CompilerSpecificFiles {
28
31
$f
29
32
}
30
33
31
- foreach ($f in (Get-ChildItem - Filter " * .expected.$Configuration " $TestDirectory )){
34
+ foreach ($f in (Get-ChildItem - Filter " $Query .expected.$Configuration " $TestDirectory )){
32
35
Write-Host " Found file $f ..."
33
36
$f
34
37
}
You can’t perform that action at this time.
0 commit comments