Skip to content
Snippets Groups Projects
Commit 2ccbb77f authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

WOLF-300: Try using a smaller data volume for LLLeap tests on Windows.

parent 5e111c6d
No related branches found
No related tags found
No related merge requests found
......@@ -36,10 +36,18 @@ StringVec sv(const StringVec& listof) { return listof; }
#if defined(LL_WINDOWS)
#define sleep(secs) _sleep((secs) * 1000)
#endif
// WOLF-300: It appears that driving a megabyte of data through an LLLeap pipe
// 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;
#else // not Windows
const size_t BUFFERED_LENGTH = 1023*1024; // try wrangling just under a megabyte of data
#endif
void waitfor(const std::vector<LLLeap*>& instances, int timeout=60)
{
int i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment