diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index 0e96374e4..fdae22a3f 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -4450,11 +4450,13 @@ RGV2aWNlIEEQSQAGADcqAAEg res = socks[i].recv(100) if "HTTP/1" in res: count += 1 + else: + logger.info("recv[%d]: len=%d" % (i, len(res))) except: pass socks[i].close() logger.info("%d concurrent HTTP GET operations returned response" % count) - if count < 10: + if count < 8: raise Exception("Too few concurrent HTTP connections accepted") logger.info("OOM in HTTP server")