Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a crash in IPCPathManagerBatchTest on Windows.
This CL addresses a silent crash in IPCPathManagerBatchTest on Windows. Suppose 1MB memory range needs to be reserved for a thread by default. If we want to run 8,192 threads at the same time, we need at least 8GB memory range, which is, of course, impossible since ipc_test.exe is a 32-bit executable on Windows. This issue was not discovered probably because GTest's exception handlers silently drain runtime exceptions. With this CL, the number of threads will be decreased from 8192 to 64. This is an issue in a unit test. Production binaries have nothing to do with this crash. BUG= TEST=unittest REF_BUG REF_CL=105721236
- Loading branch information