File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,13 @@ $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 - Query $CurrentQueryName )
324
+
325
+ if ($q.shared_implementation_short_name ) {
326
+ $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory - Query $q.shared_implementation_short_name )
327
+ }
328
+ else {
329
+ $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory - Query $CurrentQueryName )
330
+ }
325
331
326
332
if ($fileSet ){
327
333
$context = Push-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - FileSet $fileSet
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function Get-CompilerSpecificFiles {
31
31
$f
32
32
}
33
33
34
- foreach ($f in (Get-ChildItem - Filter " * .expected.$Configuration " $TestDirectory )){
34
+ foreach ($f in (Get-ChildItem - Filter " $Query .expected.$Configuration " $TestDirectory )){
35
35
Write-Host " Found file $f ..."
36
36
$f
37
37
}
You can’t perform that action at this time.
0 commit comments