Revision: 2286
Author:
regra...@gmail.com
Date: Wed Oct 15 16:11:10 2014 UTC
Log: Fixes issue with flow control due to unexpected header space
exhaustion test
--This test should no longer encounter situations where it could
potentially run out of EQ space as well.
https://code.google.com/p/portals4/source/detail?r=2286
Modified:
/trunk/test/basic/test_flowctl_nohdr.c
=======================================
--- /trunk/test/basic/test_flowctl_nohdr.c Mon Oct 21 19:50:28 2013 UTC
+++ /trunk/test/basic/test_flowctl_nohdr.c Wed Oct 15 16:11:10 2014 UTC
@@ -115,7 +115,7 @@
ptl_md_t md;
/* 16 extra just in case... */
- CHECK_RETURNVAL(PtlEQAlloc(ni_handle, iters + 16, &eq_handle));
+ CHECK_RETURNVAL(PtlEQAlloc(ni_handle, iters*2 + 16, &eq_handle));
md.start = NULL;
md.length = 0;