diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-05-30 12:36:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 12:36:51 -0400 |
commit | a8b6112eb7cbdb65fa16f88e1bba473fecefb5a6 (patch) | |
tree | 23f73597a41f8db0cc0c98b64255d620e931ba20 /indra/llcommon/tests/llleap_test.cpp | |
parent | 4189cb74421794ba123bf8724caa843c9d9d1c78 (diff) | |
parent | dfdb88305e4612c54f190c1ba237bdb609224d74 (diff) |
Merge pull request #1496 from secondlife/nat/catch-test-blown-stack
Attempt to diagnose stack overflow in test programs. Also, improve build.yaml logic.
Diffstat (limited to 'indra/llcommon/tests/llleap_test.cpp')
-rw-r--r-- | indra/llcommon/tests/llleap_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llleap_test.cpp b/indra/llcommon/tests/llleap_test.cpp index fa48bcdefd..3fb25b4cef 100644 --- a/indra/llcommon/tests/llleap_test.cpp +++ b/indra/llcommon/tests/llleap_test.cpp @@ -35,7 +35,7 @@ // causes Windows abdominal pain such that it later fails code-signing in some // mysterious way. Entirely suppressing these LLLeap tests pushes the failure // rate MUCH lower. Can we re-enable them with a smaller data size on Windows? -const size_t BUFFERED_LENGTH = 100*1024; +const size_t BUFFERED_LENGTH = 1023*1024; #else // not Windows const size_t BUFFERED_LENGTH = 1023*1024; // try wrangling just under a megabyte of data |