@@ -273,7 +273,7 @@ jobs:
273273 break
274274 }
275275
276- $establishedGreenTestsFilePath = ".\test\EFCore.Jet.FunctionalTests\GreenTests\ace_${{ matrix.aceVersion }}_$('' ${{ matrix.dataAccessProviderType }}' '.Replace(' ', '').ToLowerInvariant())_${{ matrix.aceArchitecture }}.txt"
276+ $establishedGreenTestsFilePath = ".\test\EFCore.Jet.FunctionalTests\GreenTests\ace_${{ matrix.aceVersion }}_$('${{ matrix.dataAccessProviderType }}'.Replace(' ', '').ToLowerInvariant())_${{ matrix.aceArchitecture }}.txt"
277277 $failIfKeepsCrashing = Test-Path $establishedGreenTestsFilePath
278278 if ($i -ge 3 -and $failIfKeepsCrashing) {
279279 echo "Shard $shard: Test runner keeps crashing."
@@ -285,7 +285,7 @@ jobs:
285285 if : always() && env.skipTests != 'true'
286286 shell : pwsh
287287 run : |
288- Get-ChildItem -Filter '*.trx' -Recurse | Sort-Object LastWriteTime | ForEach { Rename-Item $_.FullName "ace_${{ matrix.aceVersion }}_$('' ${{ matrix.dataAccessProviderType }}' '.Replace(' ', '').ToLowerInvariant())_${{ matrix.aceArchitecture }}_$($_.Name)" -Verbose }
288+ Get-ChildItem -Filter '*.trx' -Recurse | Sort-Object LastWriteTime | ForEach { Rename-Item $_.FullName "ace_${{ matrix.aceVersion }}_$('${{ matrix.dataAccessProviderType }}'.Replace(' ', '').ToLowerInvariant())_${{ matrix.aceArchitecture }}_$($_.Name)" -Verbose }
289289 - name : ' Upload Test Results'
290290 if : always() && env.skipTests != 'true' && env.uploadTestResults == 'true'
291291 uses : actions/upload-artifact@v4
@@ -335,7 +335,7 @@ jobs:
335335 Get-Content $allTestsFilePath | Where-Object { $_.StartsWith('P ') } | ForEach-Object { $_.Substring(2) } | Add-Content $greenTestsFilePath
336336
337337 # Compare test file against previously committed file.
338- $establishedGreenTestsFilePath = ".\test\EFCore.Jet.FunctionalTests\GreenTests\ace_${{ matrix.aceVersion }}_$('' ${{ matrix.dataAccessProviderType }}' '.Replace(' ', '').ToLowerInvariant())_${{ matrix.aceArchitecture }}.txt"
338+ $establishedGreenTestsFilePath = ".\test\EFCore.Jet.FunctionalTests\GreenTests\ace_${{ matrix.aceVersion }}_$('${{ matrix.dataAccessProviderType }}'.Replace(' ', '').ToLowerInvariant())_${{ matrix.aceArchitecture }}.txt"
339339
340340 if (Test-Path $establishedGreenTestsFilePath) {
341341 $diffResult = Compare-Object (Get-Content $establishedGreenTestsFilePath) (Get-Content $greenTestsFilePath)
0 commit comments