Make sure AddressSanitizer does not tamper with the stack here.
| 8882 | |
| 8883 | // Make sure AddressSanitizer does not tamper with the stack here. |
| 8884 | GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ |
| 8885 | GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ |
| 8886 | static bool StackGrowsDown() { |
| 8887 | int dummy; |
| 8888 | bool result; |
| 8889 | StackLowerThanAddress(&dummy, &result); |
| 8890 | return result; |
| 8891 | } |
| 8892 | # endif // GTEST_HAS_CLONE |
| 8893 | |
| 8894 | // Spawns a child process with the same executable as the current process in |
no test coverage detected