
The previous timeout of 5 minutes works out okay on 4 core 8 thread AMD hardware, but isn't enough on, for example, a 2 core virtual machine running on the same hardware - it takes about 4 minutes on the former, and 8.5 minutes on the latter. So let's double the timeout to 10 minutes and see if anybody is still complaining. Signed-off-by: Laine Stump <laine@laine.org> --- scripts/nwfilter/nwfilter_concurrent.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nwfilter/nwfilter_concurrent.sh b/scripts/nwfilter/nwfilter_concurrent.sh index c42dd78..88ac876 100644 --- a/scripts/nwfilter/nwfilter_concurrent.sh +++ b/scripts/nwfilter/nwfilter_concurrent.sh @@ -244,7 +244,7 @@ runTest() # Test runs for a maximum of 5 minutes now=`date +%s` - test_end=$(($now + 5 * 60)) + test_end=$(($now + 10 * 60)) while :; do -- 2.14.5