Skip to content

Commit

Permalink
correct the numbers for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed Jun 22, 2022
1 parent 03ce886 commit 4fd1456
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions test/Scripts.Integration.Test/common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -289,12 +289,24 @@ function CheckSymbolServerOutput([string] $buildMethod, [string] $symbolServerOu
}
ElseIf ($buildMethod.contains('IOS'))
{
$expectedFiles = @(
"IntegrationTest: count=$($withSources ? 3 : 2)",
'Sentry: count=3',
"UnityFramework: count=$($withSources ? 4 : 3)",
'libiPhone-lib.dylib: count=1'
)
if ($unity2020OrHigher)
{
$expectedFiles = @(
"IntegrationTest: count=$($withSources ? 3 : 2)",
'Sentry: count=3',
"UnityFramework: count=$($withSources ? 5 : 4)",
'libiPhone-lib.dylib: count=1'
)
}
else
{
$expectedFiles = @(
"IntegrationTest: count=$($withSources ? 3 : 2)",
'Sentry: count=3',
"UnityFramework: count=$($withSources ? 4 : 3)",
'libiPhone-lib.dylib: count=1'
)
}
}
ElseIf ($buildMethod.contains('WebGL'))
{
Expand Down

0 comments on commit 4fd1456

Please sign in to comment.