Mark asan/TestCases/zero_alloc.cpp unsupported on Mac for now

It's failing due to the malloc.h include, see comment on
https://github.com/llvm/llvm-project/pull/155943

GitOrigin-RevId: a6bd36eb71cf8ad281311f6ea1428a04e8783382
diff --git a/test/asan/TestCases/zero_alloc.cpp b/test/asan/TestCases/zero_alloc.cpp
index e843a5a..1cd0073 100644
--- a/test/asan/TestCases/zero_alloc.cpp
+++ b/test/asan/TestCases/zero_alloc.cpp
@@ -1,5 +1,8 @@
 // RUN: %clang_asan -Wno-alloc-size -fsanitize-recover=address %s -o %t && %env_asan_opts=halt_on_error=0 %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: darwin
+// UNSUPPORTED: ios
+
 #include <malloc.h>
 #include <stdio.h>