[LLDB] [Tests] Downgrade -Wincompatible-pointer-types to a warning in some tests (#158756)

These no longer compile because the warning now defaults to an error
after #157364, so downgrade the error to a warning for now; I’m not
familiar enough with either LLDB or MacOS to fix these warnings properly
(assuming they’re unintended).

GitOrigin-RevId: 9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0
diff --git a/test/API/functionalities/data-formatter/data-formatter-objc/Makefile b/test/API/functionalities/data-formatter/data-formatter-objc/Makefile
index 8b322ff..5ef65e0 100644
--- a/test/API/functionalities/data-formatter/data-formatter-objc/Makefile
+++ b/test/API/functionalities/data-formatter/data-formatter-objc/Makefile
@@ -1,6 +1,6 @@
 OBJC_SOURCES := main.m
 
-CFLAGS_EXTRAS := -w
+CFLAGS_EXTRAS := -w -Wno-error=incompatible-pointer-types
 
 
 
diff --git a/test/API/macosx/ignore_exceptions/Makefile b/test/API/macosx/ignore_exceptions/Makefile
index 695335e..14ed92d 100644
--- a/test/API/macosx/ignore_exceptions/Makefile
+++ b/test/API/macosx/ignore_exceptions/Makefile
@@ -1,4 +1,4 @@
 C_SOURCES := main.c
-CFLAGS_EXTRAS := -std=c99
+CFLAGS_EXTRAS := -std=c99 -Wno-error=incompatible-pointer-types
 
 include Makefile.rules