Commit 7cc28784 authored by Robin Cheng's avatar Robin Cheng Committed by Facebook GitHub Bot

Relax the limits for StackTraceSizeLimitTest.

Summary: Apparently it's flaky...

Differential Revision: D24179337

fbshipit-source-id: 75416adaf8dbd37fc9ddeaa0500ddfaeb80cffa9
parent 98014f8b
......@@ -80,14 +80,10 @@ TEST(StackTraceSizeLimitTest, FiberLimit) {
t(fBaseline, 0);
t(fStack, 0);
t(fHeap, 0);
} else if (folly::kIsSanitizeThread) {
t(fBaseline, 3700);
t(fStack, 9000);
t(fHeap, 5000);
} else {
t(fBaseline, 3700);
t(fStack, 8000);
t(fHeap, 3700);
t(fStack, 10000);
t(fHeap, 5000);
}
} else {
if (folly::kIsSanitizeThread) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment