| 7480 | } |
| 7481 | |
| 7482 | bool StackGrowsDown() { |
| 7483 | int dummy; |
| 7484 | bool result; |
| 7485 | StackLowerThanAddress(&dummy, &result); |
| 7486 | return result; |
| 7487 | } |
| 7488 | |
| 7489 | // Spawns a child process with the same executable as the current process in |
| 7490 | // a thread-safe manner and instructs it to run the death test. The |
no test coverage detected