Skip to content

Commit 0adaddb

Browse files
.
1 parent c1b3e7c commit 0adaddb

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

integration-test/android.Tests.ps1

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,8 @@ Describe 'MAUI app (<dotnet_version>, <configuration>)' -ForEach $cases -Skip:(-
181181
Dump-ServerErrors -Result $result
182182
$result.HasErrors() | Should -BeFalse
183183
$result.Envelopes() | Should -AnyElementMatch "`"type`":`"System.NullReferenceException`""
184-
# TODO: fix redundant SIGSEGV in Release (#3954)
185-
if ($configuration -eq "Release" -and $dotnet_version -eq 'net9.0') {
186-
{ $result.Envelopes() | Should -Not -AnyElementMatch "`"type`":`"SIGSEGV`"" } | Should -Throw
187-
} else {
188-
$result.Envelopes() | Should -Not -AnyElementMatch "`"type`":`"SIGSEGV`""
189-
$result.Envelopes() | Should -HaveCount 1
190-
}
184+
$result.Envelopes() | Should -Not -AnyElementMatch "`"type`":`"SIGSEGV`""
185+
$result.Envelopes() | Should -HaveCount 1
191186
}
192187

193188
It 'Delivers battery breadcrumbs in main thread (<configuration>)' {

integration-test/net9-maui/MauiProgram.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public static MauiApp CreateMauiApp()
2525
{
2626
App.ReceiveSystemBreadcrumb(breadcrumb);
2727
return breadcrumb;
28-
}); })
28+
});
29+
})
2930
.ConfigureFonts(fonts =>
3031
{
3132
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");

0 commit comments

Comments
 (0)