Lowered threshold for CI

This commit is contained in:
Paul-Louis Ageneau
2020-06-08 15:40:37 +02:00
parent dfcae8f4fd
commit c83196ee40

View File

@ -33,7 +33,7 @@ void test_benchmark() {
if (goodput == 0)
throw runtime_error("No data received");
const size_t threshold = 10000; // 10 MB/s;
const size_t threshold = 5000; // 5 MB/s;
if (goodput < threshold)
throw runtime_error("Goodput is too low");
}