File tree Expand file tree Collapse file tree 1 file changed +14
-11
lines changed Expand file tree Collapse file tree 1 file changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -293,23 +293,26 @@ $jobRows = $queriesToCheck | ForEach-Object -ThrottleLimit $NumThreads -Parallel
293
293
$CurrentQueryName = $q.short_name
294
294
$CurrentPackageName = $q.__memberof_package
295
295
296
- # for the report
297
- $row = @ {
298
- " SUITE" = $CurrentSuiteName ;
299
- " PACKAGE" = $CurrentPackageName ;
300
- " RULE" = $CurrentRuleName ;
301
- " QUERY" = $CurrentQueryName ;
302
- " COMPILE_PASS" = $false ;
303
- " COMPILE_ERROR_OUTPUT" = " " ;
304
- " TEST_PASS" = $false ;
305
- " TEST_DIFFERENCE" = " " ;
306
- }
307
296
308
297
# all the test directories -- there may be more than one for a given rule
309
298
$testDirs = (Get-ATestDirectory - RuleObject $q - Language $using :Language )
310
299
311
300
foreach ($testDirectory in $testDirs ){
312
301
302
+ # for the report
303
+ $row = @ {
304
+ " SUITE" = $CurrentSuiteName ;
305
+ " PACKAGE" = $CurrentPackageName ;
306
+ " RULE" = $CurrentRuleName ;
307
+ " QUERY" = $CurrentQueryName ;
308
+ " COMPILE_PASS" = $false ;
309
+ " COMPILE_ERROR_OUTPUT" = " " ;
310
+ " TEST_PASS" = $false ;
311
+ " TEST_DIFFERENCE" = " " ;
312
+ }
313
+
314
+
315
+
313
316
Write-Host " ====================[Rule=$CurrentRuleName ,Suite=$CurrentSuiteName /Query=$CurrentQueryName ]===================="
314
317
315
318
You can’t perform that action at this time.
0 commit comments