File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ foreach($q in $queriesToCheck){
67
67
68
68
$dirName = (Get-Item $testDirectory ).Basename
69
69
$dirNameLower = $dirName.ToLower ()
70
+ $sharedName = $q.shared_implementation_short_name
70
71
71
72
$row [" TEST_DIR_EXISTS" ] = $true
72
73
@@ -76,16 +77,16 @@ foreach($q in $queriesToCheck){
76
77
Write-Host " -SOURCE $ ( (Join-Path $testDirectory " test.$Language " )) missing"
77
78
}
78
79
79
- if ((Test-Path (Join-Path $testDirectory " $dirNameLower .expected" ))){
80
+ if ((Test-Path (Join-Path $testDirectory " $sharedName .expected" ))){
80
81
$row [" EXPECTED_EXISTS" ] = $true
81
82
}else {
82
- Write-Host " -EXPECTED $ ( (Join-Path $testDirectory " $dirNameLower .expected" )) missing"
83
+ Write-Host " -EXPECTED $ ( (Join-Path $testDirectory " $sharedName .expected" )) missing"
83
84
}
84
85
85
- if ((Test-Path (Join-Path $testDirectory " $dirNameLower .ql" ))){
86
+ if ((Test-Path (Join-Path $testDirectory " $sharedName .ql" ))){
86
87
$row [" REFERENCE_EXISTS" ] = $true
87
88
}else {
88
- Write-Host " -QL $ ( (Join-Path $testDirectory " $dirNameLower .ql" )) missing"
89
+ Write-Host " -QL $ ( (Join-Path $testDirectory " $sharedName .ql" )) missing"
89
90
}
90
91
91
92
You can’t perform that action at this time.
0 commit comments