Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / third-party / unittest / googletest / include / gtest / internal / custom / README.md
blobcb49e2c754c250ed975e371551267b938ebcdfa1
1 # Customization Points
3 The custom directory is an injection point for custom user configurations.
5 ## Header `gtest.h`
7 ### The following macros can be defined:
9 *   `GTEST_OS_STACK_TRACE_GETTER_` - The name of an implementation of
10     `OsStackTraceGetterInterface`.
11 *   `GTEST_CUSTOM_TEMPDIR_FUNCTION_` - An override for `testing::TempDir()`. See
12     `testing::TempDir` for semantics and signature.
14 ## Header `gtest-port.h`
16 The following macros can be defined:
18 ### Logging:
20 *   `GTEST_LOG_(severity)`
21 *   `GTEST_CHECK_(condition)`
22 *   Functions `LogToStderr()` and `FlushInfoLog()` have to be provided too.
24 ### Threading:
26 *   `GTEST_HAS_NOTIFICATION_` - Enabled if Notification is already provided.
27 *   `GTEST_HAS_MUTEX_AND_THREAD_LOCAL_` - Enabled if `Mutex` and `ThreadLocal`
28     are already provided. Must also provide `GTEST_DECLARE_STATIC_MUTEX_(mutex)`
29     and `GTEST_DEFINE_STATIC_MUTEX_(mutex)`
30 *   `GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks)`
31 *   `GTEST_LOCK_EXCLUDED_(locks)`
33 ### Underlying library support features
35 *   `GTEST_HAS_CXXABI_H_`
37 ### Exporting API symbols:
39 *   `GTEST_API_` - Specifier for exported symbols.
41 ## Header `gtest-printers.h`
43 *   See documentation at `gtest/gtest-printers.h` for details on how to define a
44     custom printer.