test: Increase default stack size on MSVC to make CI pass #295
+2
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Followup on commit 5f551bd to ensure that the stack size linkage flag is respected.
Github CI appears to have a smaller default stack size than typical MSVC environments.
Flag should be /STACK:### instead of -STACK:###
The test cmd.fbracket-depth can be forced to fail by setting
CMAKE_EXE_LINKER_FLAGS to /STACK:100
Additionally, CMAKE_EXE_LINKER_FLAGS needs to be set with CACHE
for the value to persist into the CMakeCache.txt. Without set(CACHE)
statement, the CMakeCache.txt did not include the requested
/STACK:###