We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c693a7e commit a267d32Copy full SHA for a267d32
1 file changed
integration-test/android.Tests.ps1
@@ -149,6 +149,20 @@ Describe 'MAUI app' -ForEach @(
149
$result.Envelopes() | Should -Not -AnyElementMatch "`"type`":`"System.\w+Exception`""
150
}
151
152
+ It 'Native crash' {
153
+ $result = Invoke-SentryServer {
154
+ param([string]$url)
155
+ InstallAndroidApp -Dsn $url
156
+ RunAndroidApp -Dsn $url -TestArg "Native"
157
+ RunAndroidApp -Dsn $url
158
+ }
159
+
160
+ Dump-ServerErrors -Result $result
161
+ $result.HasErrors() | Should -BeFalse
162
+ $result.Envelopes() | Should -AnyElementMatch "`"type`":`"SIG[A-Z]+`"" # SIGILL (x86_64), SIGTRAP (arm64-v8a)
163
+ $result.Envelopes() | Should -Not -AnyElementMatch "`"type`":`"System.\w+Exception`""
164
165
166
It 'Null reference exception' {
167
$result = Invoke-SentryServer {
168
param([string]$url)
0 commit comments