File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
test/sanitizer_common/TestCases/Posix Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ void PlatformTSDDtor(void *tsd) {
149149#endif
150150
151151void InstallAtForkHandler () {
152- # if SANITIZER_SOLARIS || SANITIZER_NETBSD
152+ # if SANITIZER_SOLARIS || SANITIZER_NETBSD || SANITIZER_APPLE
153153 return ; // FIXME: Implement FutexWait.
154154# endif
155155 auto before = []() {
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ void InstallAtExitCheckLeaks() {
101101}
102102
103103void InstallAtForkHandler () {
104- # if SANITIZER_SOLARIS || SANITIZER_NETBSD
104+ # if SANITIZER_SOLARIS || SANITIZER_NETBSD || SANITIZER_APPLE
105105 return ; // FIXME: Implement FutexWait.
106106# endif
107107 auto before = []() {
Original file line number Diff line number Diff line change 1515// FIXME: Requires `FutexWait` implementation. See __asan::InstallAtForkHandler.
1616// UNSUPPORTED: target={{.*solaris.*}}
1717// UNSUPPORTED: target={{.*netbsd.*}}
18+ // UNSUPPORTED: target={{.*apple.*}}
1819
1920// Forking in multithread environment is unsupported. However we already have
2021// some workarounds, and will add more, so this is the test.
You can’t perform that action at this time.
0 commit comments