Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/unit/test_client_report.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,12 @@ flush_thread_func(void *data)

SENTRY_TEST(client_report_concurrent)
{
#if defined(SENTRY_PLATFORM_NX)
// Hot busy-wait in flush_thread_func saturates the devkit and trips the
// Nintendo OS watchdog, which terminates the process with
// `ExitKind: InterruptByOtherProcess`.
SKIP_TEST();
#endif
SENTRY_TEST_OPTIONS_NEW(options);
sentry_init(options);

Expand Down
Loading