xref: /aosp_15_r20/external/google-breakpad/src/client/mac/tests/testlogging.h (revision 9712c20fc9bbfbac4935993a2ca0b3958c5adad2)
1 // This file exists to override the processor logging for unit tests,
2 // since it confuses XCode into thinking unit tests have failed.
3 #include <sstream>
4 
5 namespace google_breakpad {
6 extern std::ostringstream info_log;
7 }
8 
9 #define BPLOG_INFO_STREAM google_breakpad::info_log
10