[TSan][Test] Disable signal_recursive.cpp test on Darwin (#141135)

Mark signal_recursive.cpp test as unsupported on Darwin due to
deprecated API `sem_init` and test receives error:

`sem_init failed (errno=78)`
This commit is contained in:
Steven Wu 2025-05-22 16:22:21 -07:00 committed by GitHub
parent 1a4d588738
commit e9304cb7bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,8 @@
// Test case for recursive signal handlers, adopted from: // Test case for recursive signal handlers, adopted from:
// https://github.com/google/sanitizers/issues/478 // https://github.com/google/sanitizers/issues/478
// UNSUPPORTED: darwin
#include "test.h" #include "test.h"
#include <semaphore.h> #include <semaphore.h>
#include <signal.h> #include <signal.h>