forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compiler tests: Avoid running out of virtual address space
On 32-bit Windows systems, there is typically only 2 GiB of available virtual adress space. Some of our memory-hungry test cases (especially `compile_SUITE:core_roundtrip/1`) occasionally crash when the virtual address is exhausted. In an attempt to reduce fragmentation of the allocated memory, change `test_lib:p_run/2` to not spawn any new processes on 32-bit systems, but instead run all tasks sequentially in single process.
- Loading branch information
Showing
2 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters